├── Commands ├── CRAN Packages.tmCommand ├── Completion….tmCommand ├── Copy Result into Pasteboard.tmCommand ├── Create Matrix from Selection.tmCommand ├── Create Vector from Selection.tmCommand ├── Descriptives….tmCommand ├── Edit user-defined Function Parameter.tmCommand ├── Evaluate Selection:Line in R_app & Step.tmCommand ├── Function Call.tmCommand ├── Function Definition.tmCommand ├── Help.tmCommand ├── Insert Result.tmCommand ├── Load Library using "library".tmCommand ├── Load Library using "require".tmCommand ├── Option List as Pull Down… : BoolToggler.tmCommand ├── Package Name….tmCommand ├── Plots….tmCommand ├── Prefix Package Name current Function.tmCommand ├── R Web Search for Word:Selection.tmCommand ├── RSiteSearch for Word:Selection.tmCommand ├── R_app.tmCommand ├── Rd Insert arguments tag.tmCommand ├── Rd Preview as HTML.tmCommand ├── Rdaemon.tmCommand ├── Run Selection:Document In R.tmCommand ├── Show File Header.tmCommand ├── Show Function Usage.tmCommand ├── Show R Documentation.tmCommand ├── Show R Help for actual Word:Selection.tmCommand ├── Show Result as Tooltip.tmCommand ├── Summaries….tmCommand ├── Terminate Helper Daemon.tmCommand ├── Tidy.tmCommand ├── “ <- ”.tmCommand ├── “par()” Parameters….tmCommand └── “require(xxx)” for current Function.tmCommand ├── DragCommands ├── load (*_Rdata).tmDragCommand ├── read_csv (*_csv).tmDragCommand ├── read_spss (*_sav).tmDragCommand ├── read_table (*_tab).tmDragCommand └── source (*_R).tmDragCommand ├── Macros ├── Function Parameters….tmMacro ├── Next List Element:Parameter Value.tmMacro ├── Previous List Element:Parameter Value.tmMacro └── Show Function Usage + Insert “(”.tmMacro ├── Preferences ├── Comments.plist ├── Folding - Documentation.tmPreferences ├── Folding - R.tmPreferences ├── Indentation Rules.tmPreferences ├── Methods.tmPreferences ├── Symbol List (Rd Documentation).tmPreferences └── Symbol List: Pragma.tmPreferences ├── README.mdown ├── Snippets ├── Add Tick Marks.tmSnippet ├── Attach.tmSnippet ├── Cummulative.tmSnippet ├── Density.tmSnippet ├── Detach.tmSnippet ├── Divide Into Intervals.tmSnippet ├── Factor.tmSnippet ├── For Loop.tmSnippet ├── Function.tmSnippet ├── Ifelse.tmSnippet ├── Length.tmSnippet ├── Load Dataset.tmSnippet ├── Polygonal Line.tmSnippet ├── Read From File.tmSnippet ├── Sequence (from,to,by).tmSnippet ├── Sort.tmSnippet ├── Source.tmSnippet ├── file_choose.tmSnippet └── na_omit.tmSnippet ├── Support ├── Rmate.css ├── bin │ ├── ProcessHelpFiles.rb │ ├── RhelperDaemon.rb │ ├── RhelperScript.R │ ├── Rsearch.sh │ ├── askRhelperDaemon.sh │ ├── auto_show_func_usage.sh │ ├── initCommandArgsDir.sh │ ├── insert_command_template.rb │ ├── insert_function_param.sh │ ├── insert_package_name.sh │ ├── parseDocForFunctions.sh │ ├── parseHTMLForUsage.sh │ ├── prefix_package_name.sh │ ├── startRhelperDaemon.sh │ └── startRhelperbuilder.sh ├── getSig.R ├── getSigTest.R ├── lib │ ├── command_args │ │ ├── dist │ │ ├── getOption │ │ ├── lines │ │ ├── mean │ │ ├── options │ │ ├── par │ │ ├── plot │ │ └── points │ ├── help.markdown │ ├── historyList.rb │ ├── parsing.rb │ └── popen3.rb ├── pastel.css ├── tests │ ├── historytestFile.Rconsole │ └── testHistoryList.rb └── tmR.rb ├── Syntaxes ├── R.plist └── Rd (R Documentation).tmLanguage └── info.plist /Commands/CRAN Packages.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/CRAN Packages.tmCommand -------------------------------------------------------------------------------- /Commands/Completion….tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Completion….tmCommand -------------------------------------------------------------------------------- /Commands/Copy Result into Pasteboard.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Copy Result into Pasteboard.tmCommand -------------------------------------------------------------------------------- /Commands/Create Matrix from Selection.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Create Matrix from Selection.tmCommand -------------------------------------------------------------------------------- /Commands/Create Vector from Selection.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Create Vector from Selection.tmCommand -------------------------------------------------------------------------------- /Commands/Descriptives….tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Descriptives….tmCommand -------------------------------------------------------------------------------- /Commands/Edit user-defined Function Parameter.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Edit user-defined Function Parameter.tmCommand -------------------------------------------------------------------------------- /Commands/Evaluate Selection:Line in R_app & Step.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Evaluate Selection:Line in R_app & Step.tmCommand -------------------------------------------------------------------------------- /Commands/Function Call.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Function Call.tmCommand -------------------------------------------------------------------------------- /Commands/Function Definition.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Function Definition.tmCommand -------------------------------------------------------------------------------- /Commands/Help.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Help.tmCommand -------------------------------------------------------------------------------- /Commands/Insert Result.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Insert Result.tmCommand -------------------------------------------------------------------------------- /Commands/Load Library using "library".tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Load Library using "library".tmCommand -------------------------------------------------------------------------------- /Commands/Load Library using "require".tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Load Library using "require".tmCommand -------------------------------------------------------------------------------- /Commands/Option List as Pull Down… : BoolToggler.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Option List as Pull Down… : BoolToggler.tmCommand -------------------------------------------------------------------------------- /Commands/Package Name….tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Package Name….tmCommand -------------------------------------------------------------------------------- /Commands/Plots….tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Plots….tmCommand -------------------------------------------------------------------------------- /Commands/Prefix Package Name current Function.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Prefix Package Name current Function.tmCommand -------------------------------------------------------------------------------- /Commands/R Web Search for Word:Selection.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/R Web Search for Word:Selection.tmCommand -------------------------------------------------------------------------------- /Commands/RSiteSearch for Word:Selection.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/RSiteSearch for Word:Selection.tmCommand -------------------------------------------------------------------------------- /Commands/R_app.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/R_app.tmCommand -------------------------------------------------------------------------------- /Commands/Rd Insert arguments tag.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Rd Insert arguments tag.tmCommand -------------------------------------------------------------------------------- /Commands/Rd Preview as HTML.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Rd Preview as HTML.tmCommand -------------------------------------------------------------------------------- /Commands/Rdaemon.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Rdaemon.tmCommand -------------------------------------------------------------------------------- /Commands/Run Selection:Document In R.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Run Selection:Document In R.tmCommand -------------------------------------------------------------------------------- /Commands/Show File Header.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Show File Header.tmCommand -------------------------------------------------------------------------------- /Commands/Show Function Usage.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Show Function Usage.tmCommand -------------------------------------------------------------------------------- /Commands/Show R Documentation.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Show R Documentation.tmCommand -------------------------------------------------------------------------------- /Commands/Show R Help for actual Word:Selection.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Show R Help for actual Word:Selection.tmCommand -------------------------------------------------------------------------------- /Commands/Show Result as Tooltip.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Show Result as Tooltip.tmCommand -------------------------------------------------------------------------------- /Commands/Summaries….tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Summaries….tmCommand -------------------------------------------------------------------------------- /Commands/Terminate Helper Daemon.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Terminate Helper Daemon.tmCommand -------------------------------------------------------------------------------- /Commands/Tidy.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/Tidy.tmCommand -------------------------------------------------------------------------------- /Commands/“ <- ”.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/“ <- ”.tmCommand -------------------------------------------------------------------------------- /Commands/“par()” Parameters….tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/“par()” Parameters….tmCommand -------------------------------------------------------------------------------- /Commands/“require(xxx)” for current Function.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Commands/“require(xxx)” for current Function.tmCommand -------------------------------------------------------------------------------- /DragCommands/load (*_Rdata).tmDragCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/DragCommands/load (*_Rdata).tmDragCommand -------------------------------------------------------------------------------- /DragCommands/read_csv (*_csv).tmDragCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/DragCommands/read_csv (*_csv).tmDragCommand -------------------------------------------------------------------------------- /DragCommands/read_spss (*_sav).tmDragCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/DragCommands/read_spss (*_sav).tmDragCommand -------------------------------------------------------------------------------- /DragCommands/read_table (*_tab).tmDragCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/DragCommands/read_table (*_tab).tmDragCommand -------------------------------------------------------------------------------- /DragCommands/source (*_R).tmDragCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/DragCommands/source (*_R).tmDragCommand -------------------------------------------------------------------------------- /Macros/Function Parameters….tmMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Macros/Function Parameters….tmMacro -------------------------------------------------------------------------------- /Macros/Next List Element:Parameter Value.tmMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Macros/Next List Element:Parameter Value.tmMacro -------------------------------------------------------------------------------- /Macros/Previous List Element:Parameter Value.tmMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Macros/Previous List Element:Parameter Value.tmMacro -------------------------------------------------------------------------------- /Macros/Show Function Usage + Insert “(”.tmMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Macros/Show Function Usage + Insert “(”.tmMacro -------------------------------------------------------------------------------- /Preferences/Comments.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Preferences/Comments.plist -------------------------------------------------------------------------------- /Preferences/Folding - Documentation.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Preferences/Folding - Documentation.tmPreferences -------------------------------------------------------------------------------- /Preferences/Folding - R.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Preferences/Folding - R.tmPreferences -------------------------------------------------------------------------------- /Preferences/Indentation Rules.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Preferences/Indentation Rules.tmPreferences -------------------------------------------------------------------------------- /Preferences/Methods.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Preferences/Methods.tmPreferences -------------------------------------------------------------------------------- /Preferences/Symbol List (Rd Documentation).tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Preferences/Symbol List (Rd Documentation).tmPreferences -------------------------------------------------------------------------------- /Preferences/Symbol List: Pragma.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Preferences/Symbol List: Pragma.tmPreferences -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/README.mdown -------------------------------------------------------------------------------- /Snippets/Add Tick Marks.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Add Tick Marks.tmSnippet -------------------------------------------------------------------------------- /Snippets/Attach.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Attach.tmSnippet -------------------------------------------------------------------------------- /Snippets/Cummulative.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Cummulative.tmSnippet -------------------------------------------------------------------------------- /Snippets/Density.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Density.tmSnippet -------------------------------------------------------------------------------- /Snippets/Detach.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Detach.tmSnippet -------------------------------------------------------------------------------- /Snippets/Divide Into Intervals.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Divide Into Intervals.tmSnippet -------------------------------------------------------------------------------- /Snippets/Factor.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Factor.tmSnippet -------------------------------------------------------------------------------- /Snippets/For Loop.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/For Loop.tmSnippet -------------------------------------------------------------------------------- /Snippets/Function.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Function.tmSnippet -------------------------------------------------------------------------------- /Snippets/Ifelse.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Ifelse.tmSnippet -------------------------------------------------------------------------------- /Snippets/Length.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Length.tmSnippet -------------------------------------------------------------------------------- /Snippets/Load Dataset.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Load Dataset.tmSnippet -------------------------------------------------------------------------------- /Snippets/Polygonal Line.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Polygonal Line.tmSnippet -------------------------------------------------------------------------------- /Snippets/Read From File.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Read From File.tmSnippet -------------------------------------------------------------------------------- /Snippets/Sequence (from,to,by).tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Sequence (from,to,by).tmSnippet -------------------------------------------------------------------------------- /Snippets/Sort.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Sort.tmSnippet -------------------------------------------------------------------------------- /Snippets/Source.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/Source.tmSnippet -------------------------------------------------------------------------------- /Snippets/file_choose.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/file_choose.tmSnippet -------------------------------------------------------------------------------- /Snippets/na_omit.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Snippets/na_omit.tmSnippet -------------------------------------------------------------------------------- /Support/Rmate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/Rmate.css -------------------------------------------------------------------------------- /Support/bin/ProcessHelpFiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/ProcessHelpFiles.rb -------------------------------------------------------------------------------- /Support/bin/RhelperDaemon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/RhelperDaemon.rb -------------------------------------------------------------------------------- /Support/bin/RhelperScript.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/RhelperScript.R -------------------------------------------------------------------------------- /Support/bin/Rsearch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/Rsearch.sh -------------------------------------------------------------------------------- /Support/bin/askRhelperDaemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/askRhelperDaemon.sh -------------------------------------------------------------------------------- /Support/bin/auto_show_func_usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/auto_show_func_usage.sh -------------------------------------------------------------------------------- /Support/bin/initCommandArgsDir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/initCommandArgsDir.sh -------------------------------------------------------------------------------- /Support/bin/insert_command_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/insert_command_template.rb -------------------------------------------------------------------------------- /Support/bin/insert_function_param.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/insert_function_param.sh -------------------------------------------------------------------------------- /Support/bin/insert_package_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/insert_package_name.sh -------------------------------------------------------------------------------- /Support/bin/parseDocForFunctions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/parseDocForFunctions.sh -------------------------------------------------------------------------------- /Support/bin/parseHTMLForUsage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/parseHTMLForUsage.sh -------------------------------------------------------------------------------- /Support/bin/prefix_package_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/prefix_package_name.sh -------------------------------------------------------------------------------- /Support/bin/startRhelperDaemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/startRhelperDaemon.sh -------------------------------------------------------------------------------- /Support/bin/startRhelperbuilder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/bin/startRhelperbuilder.sh -------------------------------------------------------------------------------- /Support/getSig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/getSig.R -------------------------------------------------------------------------------- /Support/getSigTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/getSigTest.R -------------------------------------------------------------------------------- /Support/lib/command_args/dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/command_args/dist -------------------------------------------------------------------------------- /Support/lib/command_args/getOption: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/command_args/getOption -------------------------------------------------------------------------------- /Support/lib/command_args/lines: -------------------------------------------------------------------------------- 1 | type="p|l|b|c|o|h|s|S|n" -------------------------------------------------------------------------------- /Support/lib/command_args/mean: -------------------------------------------------------------------------------- 1 | trim=0 2 | na.rm=TRUE -------------------------------------------------------------------------------- /Support/lib/command_args/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/command_args/options -------------------------------------------------------------------------------- /Support/lib/command_args/par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/command_args/par -------------------------------------------------------------------------------- /Support/lib/command_args/plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/command_args/plot -------------------------------------------------------------------------------- /Support/lib/command_args/points: -------------------------------------------------------------------------------- 1 | type="p|l|b|c|o|h|s|S|n" -------------------------------------------------------------------------------- /Support/lib/help.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/help.markdown -------------------------------------------------------------------------------- /Support/lib/historyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/historyList.rb -------------------------------------------------------------------------------- /Support/lib/parsing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/parsing.rb -------------------------------------------------------------------------------- /Support/lib/popen3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/lib/popen3.rb -------------------------------------------------------------------------------- /Support/pastel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/pastel.css -------------------------------------------------------------------------------- /Support/tests/historytestFile.Rconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/tests/historytestFile.Rconsole -------------------------------------------------------------------------------- /Support/tests/testHistoryList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/tests/testHistoryList.rb -------------------------------------------------------------------------------- /Support/tmR.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Support/tmR.rb -------------------------------------------------------------------------------- /Syntaxes/R.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Syntaxes/R.plist -------------------------------------------------------------------------------- /Syntaxes/Rd (R Documentation).tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/Syntaxes/Rd (R Documentation).tmLanguage -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmate/r.tmbundle/HEAD/info.plist --------------------------------------------------------------------------------