Bram Moolenaar | 7f03644 | 2010-08-15 15:24:20 +0200 | [diff] [blame] | 1 | *if_ruby.txt* For Vim version 7.3. Last change: 2010 Jul 20 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Shugo Maeda |
| 5 | |
| 6 | The Ruby Interface to Vim *ruby* *Ruby* |
| 7 | |
| 8 | |
| 9 | 1. Commands |ruby-commands| |
| 10 | 2. The VIM module |ruby-vim| |
| 11 | 3. VIM::Buffer objects |ruby-buffer| |
| 12 | 4. VIM::Window objects |ruby-window| |
| 13 | 5. Global variables |ruby-globals| |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 14 | 6. Dynamic loading |ruby-dynamic| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 15 | |
| 16 | {Vi does not have any of these commands} |
| 17 | *E266* *E267* *E268* *E269* *E270* *E271* *E272* *E273* |
| 18 | |
| 19 | The Ruby interface only works when Vim was compiled with the |+ruby| feature. |
| 20 | |
| 21 | The home page for ruby is http://www.ruby-lang.org/. You can find links for |
| 22 | downloading Ruby there. |
| 23 | |
| 24 | ============================================================================== |
| 25 | 1. Commands *ruby-commands* |
| 26 | |
| 27 | *:ruby* *:rub* |
| 28 | :rub[y] {cmd} Execute Ruby command {cmd}. |
| 29 | |
| 30 | :rub[y] << {endpattern} |
| 31 | {script} |
| 32 | {endpattern} |
| 33 | Execute Ruby script {script}. |
| 34 | {endpattern} must NOT be preceded by any white space. |
| 35 | If {endpattern} is omitted, it defaults to a dot '.' |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 36 | like for the |:append| and |:insert| commands. This |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 37 | form of the |:ruby| command is mainly useful for |
| 38 | including ruby code in vim scripts. |
| 39 | Note: This command doesn't work when the Ruby feature |
| 40 | wasn't compiled in. To avoid errors, see |
| 41 | |script-here|. |
| 42 | |
| 43 | Example Vim script: > |
| 44 | |
| 45 | function! RedGem() |
| 46 | ruby << EOF |
| 47 | class Garnet |
| 48 | def initialize(s) |
| 49 | @buffer = VIM::Buffer.current |
| 50 | vimputs(s) |
| 51 | end |
| 52 | def vimputs(s) |
| 53 | @buffer.append(@buffer.count,s) |
| 54 | end |
| 55 | end |
| 56 | gem = Garnet.new("pretty") |
| 57 | EOF |
| 58 | endfunction |
| 59 | < |
| 60 | |
| 61 | *:rubydo* *:rubyd* *E265* |
| 62 | :[range]rubyd[o] {cmd} Evaluate Ruby command {cmd} for each line in the |
| 63 | [range], with $_ being set to the text of each line in |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 64 | turn, without a trailing <EOL>. Setting $_ will change |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 65 | the text, but note that it is not possible to add or |
| 66 | delete lines using this command. |
| 67 | The default for [range] is the whole file: "1,$". |
| 68 | |
| 69 | *:rubyfile* *:rubyf* |
| 70 | :rubyf[ile] {file} Execute the Ruby script in {file}. This is the same as |
| 71 | ":ruby load 'file'", but allows file name completion. |
| 72 | |
| 73 | Executing Ruby commands is not possible in the |sandbox|. |
| 74 | |
| 75 | ============================================================================== |
| 76 | 2. The VIM module *ruby-vim* |
| 77 | |
| 78 | Ruby code gets all of its access to vim via the "VIM" module. |
| 79 | |
| 80 | Overview > |
Bram Moolenaar | 899dddf | 2006-03-26 21:06:50 +0000 | [diff] [blame] | 81 | print "Hello" # displays a message |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 82 | VIM.command(cmd) # execute an Ex command |
Bram Moolenaar | 899dddf | 2006-03-26 21:06:50 +0000 | [diff] [blame] | 83 | num = VIM::Window.count # gets the number of windows |
| 84 | w = VIM::Window[n] # gets window "n" |
| 85 | cw = VIM::Window.current # gets the current window |
| 86 | num = VIM::Buffer.count # gets the number of buffers |
| 87 | b = VIM::Buffer[n] # gets buffer "n" |
| 88 | cb = VIM::Buffer.current # gets the current buffer |
| 89 | w.height = lines # sets the window height |
| 90 | w.cursor = [row, col] # sets the window cursor position |
| 91 | pos = w.cursor # gets an array [row, col] |
| 92 | name = b.name # gets the buffer file name |
| 93 | line = b[n] # gets a line from the buffer |
| 94 | num = b.count # gets the number of lines |
| 95 | b[n] = str # sets a line in the buffer |
| 96 | b.delete(n) # deletes a line |
| 97 | b.append(n, str) # appends a line after n |
| 98 | line = VIM::Buffer.current.line # gets the current line |
| 99 | num = VIM::Buffer.current.line_number # gets the current line number |
| 100 | VIM::Buffer.current.line = "test" # sets the current line number |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 101 | < |
| 102 | |
| 103 | Module Functions: |
| 104 | |
| 105 | *ruby-message* |
| 106 | VIM::message({msg}) |
| 107 | Displays the message {msg}. |
| 108 | |
| 109 | *ruby-set_option* |
| 110 | VIM::set_option({arg}) |
| 111 | Sets a vim option. {arg} can be any argument that the ":set" command |
| 112 | accepts. Note that this means that no spaces are allowed in the |
| 113 | argument! See |:set|. |
| 114 | |
| 115 | *ruby-command* |
| 116 | VIM::command({cmd}) |
| 117 | Executes Ex command {cmd}. |
| 118 | |
| 119 | *ruby-evaluate* |
| 120 | VIM::evaluate({expr}) |
| 121 | Evaluates {expr} using the vim internal expression evaluator (see |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 122 | |expression|). Returns the expression result as a string. |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 123 | A |List| is turned into a string by joining the items and inserting |
| 124 | line breaks. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 125 | |
| 126 | ============================================================================== |
| 127 | 3. VIM::Buffer objects *ruby-buffer* |
| 128 | |
| 129 | VIM::Buffer objects represent vim buffers. |
| 130 | |
| 131 | Class Methods: |
| 132 | |
| 133 | current Returns the current buffer object. |
| 134 | count Returns the number of buffers. |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 135 | self[{n}] Returns the buffer object for the number {n}. The first number |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 136 | is 0. |
| 137 | |
| 138 | Methods: |
| 139 | |
| 140 | name Returns the name of the buffer. |
| 141 | number Returns the number of the buffer. |
| 142 | count Returns the number of lines. |
| 143 | length Returns the number of lines. |
| 144 | self[{n}] Returns a line from the buffer. {n} is the line number. |
| 145 | self[{n}] = {str} |
| 146 | Sets a line in the buffer. {n} is the line number. |
| 147 | delete({n}) Deletes a line from the buffer. {n} is the line number. |
| 148 | append({n}, {str}) |
| 149 | Appends a line after the line {n}. |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 150 | line Returns the current line of the buffer if the buffer is |
Bram Moolenaar | 899dddf | 2006-03-26 21:06:50 +0000 | [diff] [blame] | 151 | active. |
| 152 | line = {str} Sets the current line of the buffer if the buffer is active. |
| 153 | line_number Returns the number of the current line if the buffer is |
| 154 | active. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 155 | |
| 156 | ============================================================================== |
| 157 | 4. VIM::Window objects *ruby-window* |
| 158 | |
| 159 | VIM::Window objects represent vim windows. |
| 160 | |
| 161 | Class Methods: |
| 162 | |
| 163 | current Returns the current window object. |
| 164 | count Returns the number of windows. |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 165 | self[{n}] Returns the window object for the number {n}. The first number |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 166 | is 0. |
| 167 | |
| 168 | Methods: |
| 169 | |
| 170 | buffer Returns the buffer displayed in the window. |
| 171 | height Returns the height of the window. |
| 172 | height = {n} Sets the window height to {n}. |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 173 | width Returns the width of the window. |
| 174 | width = {n} Sets the window width to {n}. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 175 | cursor Returns a [row, col] array for the cursor position. |
| 176 | cursor = [{row}, {col}] |
| 177 | Sets the cursor position to {row} and {col}. |
| 178 | |
| 179 | ============================================================================== |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 180 | 5. Global variables *ruby-globals* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 181 | |
| 182 | There are two global variables. |
| 183 | |
| 184 | $curwin The current window object. |
| 185 | $curbuf The current buffer object. |
| 186 | |
| 187 | ============================================================================== |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 188 | 6. Dynamic loading *ruby-dynamic* |
| 189 | |
| 190 | On MS-Windows the Ruby library can be loaded dynamically. The |:version| |
| 191 | output then includes |+ruby/dyn|. |
| 192 | |
| 193 | This means that Vim will search for the Ruby DLL file only when needed. When |
| 194 | you don't use the Ruby interface you don't need it, thus you can use Vim |
| 195 | without this DLL file. |
| 196 | |
Bram Moolenaar | 69154f2 | 2010-07-18 21:42:34 +0200 | [diff] [blame] | 197 | You need to install the right version of Ruby for this to work. You can find |
| 198 | the package to download from: |
| 199 | http://www.garbagecollect.jp/ruby/mswin32/en/download/release.html |
| 200 | Currently that is ruby-1.9.1-p429-i386-mswin32.zip |
| 201 | |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 202 | To use the Ruby interface the Ruby DLL must be in your search path. In a |
| 203 | console window type "path" to see what directories are used. |
| 204 | |
| 205 | The name of the DLL must match the Ruby version Vim was compiled with. |
Bram Moolenaar | 69154f2 | 2010-07-18 21:42:34 +0200 | [diff] [blame] | 206 | Currently the name is "msvcrt-ruby191.dll". That is for Ruby 1.9.1. To know |
| 207 | for sure edit "gvim.exe" and search for "ruby\d*.dll\c". |
| 208 | |
| 209 | If you want to build Vim with Ruby 1.9.1, you need to edit the config.h file |
| 210 | and comment-out the check for _MSC_VER. |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 211 | |
| 212 | ============================================================================== |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 213 | vim:tw=78:ts=8:ft=help:norl: |