|
3 | 3 | This plugin allows you to easily execute files in the terminal or a separate
|
4 | 4 | buffer.
|
5 | 5 |
|
6 |
| -**NOTE: This plugin is currently in a pre-release state. It works at a basic |
7 |
| -level, but I don't feel like it is ready for its first "real" release. |
8 |
| -Functionality is currently being added and bugs are getting ironed out.** |
9 |
| - |
10 | 6 | 
|
11 | 7 |
|
12 | 8 | Table of Contents
|
@@ -158,30 +154,30 @@ default defined as:
|
158 | 154 | " extension : command
|
159 | 155 | " Command is executed if file has specified extension
|
160 | 156 | let g:executioner#extensions = {
|
161 |
| - \ 'c' : 'gcc % -o @.out;./@.out', |
162 |
| - \ 'cpp' : 'g++ % -o @.out;./@.out', |
163 |
| - \ 'hs' : 'ghci %', |
164 |
| - \ 'js' : 'node %', |
165 |
| - \ 'm' : 'matlab', |
166 |
| - \ 'ml' : 'ocaml % -o @.out;./@.out', |
167 |
| - \ 'php' : 'php %', |
168 |
| - \ 'pl' : 'perl %', |
169 |
| - \ 'prolog' : 'swipl %', |
170 |
| - \ 'py' : 'python3 %', |
171 |
| - \ 'py2' : 'python %', |
172 |
| - \ 'R' : 'Rscript %', |
173 |
| - \ 'r' : 'Rscript %', |
174 |
| - \ 'rb' : 'ruby %', |
175 |
| - \ 'rc' : 'rustc % -o @.out;./@.out', |
176 |
| - \ 'sh' : 'bash %', |
177 |
| - \ 'swift' : 'swiftc % -o @.out;./@.out', |
178 |
| - \} |
| 157 | + \ 'c' : 'gcc % -o @.out;./@.out', |
| 158 | + \ 'cpp' : 'g++ % -o @.out;./@.out', |
| 159 | + \ 'hs' : 'ghci %', |
| 160 | + \ 'js' : 'node %', |
| 161 | + \ 'm' : 'matlab', |
| 162 | + \ 'ml' : 'ocaml % -o @.out;./@.out', |
| 163 | + \ 'php' : 'php %', |
| 164 | + \ 'pl' : 'perl %', |
| 165 | + \ 'prolog' : 'swipl %', |
| 166 | + \ 'py' : 'python %', |
| 167 | + \ 'py2' : 'python2 %', |
| 168 | + \ 'R' : 'Rscript %', |
| 169 | + \ 'r' : 'Rscript %', |
| 170 | + \ 'rb' : 'ruby %', |
| 171 | + \ 'rc' : 'rustc % -o @.out;./@.out', |
| 172 | + \ 'sh' : 'bash %', |
| 173 | + \ 'swift' : 'swiftc % -o @.out;./@.out', |
| 174 | + \} |
179 | 175 |
|
180 | 176 | " file name : command
|
181 | 177 | " Command is executed if file has specified name
|
182 | 178 | let g:executioner#names = {
|
183 |
| - \ 'makefile': 'make', |
184 |
| - \} |
| 179 | + \ 'makefile': 'make', |
| 180 | + \} |
185 | 181 | ```
|
186 | 182 |
|
187 | 183 | `g:executioner#extensions` determines commands by file extension. For example,
|
|
0 commit comments