We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
treesitter
1 parent02a8e79 commitb7445b3Copy full SHA for b7445b3
.editorconfig
@@ -0,0 +1,13 @@
1
+root =true
2
+
3
+[*]
4
+indent_style =space
5
+indent_size =2
6
+end_of_line =lf
7
+charset =utf-8
8
+trim_trailing_whitespace =true
9
+insert_final_newline =true
10
+max_line_length =off
11
12
+[*.{yaml,yml}]
13
.github/workflows/linux_neovim.yml
@@ -46,4 +46,3 @@ jobs:
46
themis ./spec
47
export VIRTUALEDIT=1
48
49
-
README.md
@@ -120,7 +120,7 @@ The snippet format was described in [here](https://code.visualstudio.com/docs/ed
120
121
#Recipe
122
123
-###$TM_FILENAME_BASE
+###$TM\_FILENAME\_BASE
124
125
You can insert the filename via`fname\<Plug>(vsnip-expand)`.
126
@@ -133,7 +133,7 @@ You can insert the filename via `fname\<Plug>(vsnip-expand)`.
133
}
134
```
135
136
-###Log $TM_SELECTED_TEXT
+###Log $TM\_SELECTED\_TEXT
137
138
You can fill`$TM_SELECTED_TEXT` by`<Plug>(vsnip-select-text)` or`<Plug>(vsnip-cut-text)`.
139
@@ -197,4 +197,3 @@ You can run `npm run test` after install [vim-themis](https://github.com/thinca/
197
1. compute the`user-diff` ...`s:Session.flush_changes`
198
2. reflect the`user-diff` to snippet ast ...`s:Snippet.follow`
199
3. reflect the`sync-diff` to buffer content ...`s:Snippet.sync & s:Session.flush_changes`
200
autoload/vital/_vsnip/VS/LSP/Diff.vim
@@ -161,4 +161,3 @@ if has('nvim')
161
catch/.*/
162
endtry
163
endif
164
autoload/vital/_vsnip/VS/LSP/Position.vim
@@ -59,4 +59,3 @@ function! s:_get_buffer_line(expr, lnum) abort
59
60
returnv:null
61
endfunction
62
autoload/vital/_vsnip/VS/LSP/Text.vim
@@ -20,4 +20,3 @@ endfunction
20
function!s:split_by_eol(text)abort
21
returnsplit(a:text,"\r\n\\|\r\\|\n",v:true)
22
23
autoload/vital/_vsnip/VS/LSP/TextEdit.vim
@@ -182,4 +182,3 @@ function! s:_switch(path) abort
182
183
returnbufnr('%')
184
185
autoload/vital/_vsnip/VS/Vim/Buffer.vim
@@ -137,4 +137,3 @@ function! s:pseudo(filepath) abort
augroupEND
returnl:bufnr
140
autoload/vital/_vsnip/VS/Vim/Option.vim
@@ -18,4 +18,3 @@ function! s:define(map) abort
18
endfor
19
return {->s:define(l:old) }
autoload/vsnip/indent.vim
@@ -58,4 +58,3 @@ function! vsnip#indent#trim_base_indent(text) abort
58
returnsubstitute(l:text,"\\%(^\\|\n\\)\\zs\\V" .l:base_indent,'','g')