update
This commit is contained in:
parent
a03bf550ce
commit
4956fe8431
|
@ -12,6 +12,22 @@ snippet cl "console.log( ... )"
|
|||
console.log($0);
|
||||
endsnippet
|
||||
|
||||
snippet cw "console.warn( ... )"
|
||||
console.warn($0);
|
||||
endsnippet
|
||||
|
||||
snippet f "for (...)"
|
||||
for (let index=0; index < $1; index += 1) {
|
||||
$0
|
||||
}
|
||||
endsnippet
|
||||
|
||||
snippet fr "for (...)"
|
||||
for (let index=${1:0}; index ${2:<} $3; index ${4:+=} ${5:1}) {
|
||||
$0
|
||||
}
|
||||
endsnippet
|
||||
|
||||
snippet .fe "...forEach( ... );" i
|
||||
.forEach(($1) => {
|
||||
$0
|
||||
|
|
|
@ -8,14 +8,22 @@ snippet c "``` ..."
|
|||
endsnippet
|
||||
|
||||
# latex
|
||||
snippet vec "vector"
|
||||
snippet vec "vector 1x2"
|
||||
\\begin{bmatrix} $1 \\\\ $2 \\end{bmatrix}$0
|
||||
endsnippet
|
||||
|
||||
snippet mx "matrix"
|
||||
snippet vec3 "vector 1x3"
|
||||
\\begin{bmatrix} $1 \\\\ $2 \\\\ $3 \\end{bmatrix}$0
|
||||
endsnippet
|
||||
|
||||
snippet mx "matrix 2x2"
|
||||
\\begin{bmatrix} $1 & $2 \\\\ $3 & $4 \\end{bmatrix}$0
|
||||
endsnippet
|
||||
|
||||
snippet mx3 "matrix 3x3"
|
||||
\\begin{bmatrix} $1 & $2 & $3 \\\\ $4 & $5 & $6 \\\\ $7 & $8 & $9 \\end{bmatrix}$0
|
||||
endsnippet
|
||||
|
||||
snippet lim "limit"
|
||||
\\lim{$1 \\to $2}$0
|
||||
endsnippet
|
||||
|
|
6
init.vim
6
init.vim
|
@ -338,8 +338,6 @@ nnoremap <silent><space>cs :let @/=""<cr>
|
|||
nnoremap <silent><expr> <space>nh (&hls && v:hlsearch ? ':nohls' : ':set hls')."\n"
|
||||
" Focus on current fold, close the rest
|
||||
nnoremap <silent> <space>zz zMzvzt
|
||||
" exit from terminal insert mode with escape
|
||||
tnoremap <Esc> <C-\><C-n>
|
||||
" open quickfix window of TODOs
|
||||
nnoremap <space>td :grep -RE '(TODO\\|FIXME)' .<CR>:botright cwindow<CR>:echo len(getqflist()) 'TODOs'<CR>
|
||||
" sync highlighting from start
|
||||
|
@ -362,10 +360,6 @@ nnoremap <space>qh :chistory<CR>
|
|||
nnoremap <space>qp :colder<CR>
|
||||
nnoremap <space>qn :cnewer<CR>
|
||||
|
||||
"}}}
|
||||
" insert mode mappings {{{
|
||||
inoremap jjrg <c-o>:reg<cr>
|
||||
|
||||
"}}}
|
||||
"----------------------------------------------------------------------------}}}
|
||||
" #abbreviations {{{
|
||||
|
|
|
@ -180,3 +180,8 @@ mimetype
|
|||
thumbnailers
|
||||
Diagonalisation
|
||||
yah
|
||||
shopify
|
||||
Dropshipping
|
||||
Todo
|
||||
nodemailer
|
||||
nodejs
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue