Merge commit 'c18abfb46561f945131986da1a16a9715532db49'
This commit is contained in:
@@ -146,6 +146,8 @@ set mouse=a " Mouse control
|
||||
set incsearch " search while entering
|
||||
set hlsearch " highlight matches
|
||||
nnoremap <Leader>h :set hlsearch!<CR>
|
||||
set ignorecase
|
||||
set smartcase
|
||||
|
||||
" Line wrapping
|
||||
set tw=79 " set textwidth of 80 characters
|
||||
@@ -171,7 +173,7 @@ nmap <Leader>t :call TextWrapToggle()<CR>
|
||||
"augroup END
|
||||
|
||||
"Copying
|
||||
set clipboard=unnamedplus " Copy/Paste
|
||||
set clipboard=unnamedplus,unnamed " Copy/Paste
|
||||
|
||||
|
||||
" TagBar
|
||||
|
||||
Submodule vim/bundle/Vundle.vim updated: f6cc06238d...6497e37694
@@ -1,11 +1,11 @@
|
||||
snippet dprintk "Printk current func and debug info ..."
|
||||
printk("%s: ${1}\n", __func__${2});
|
||||
printk("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
||||
endsnippet
|
||||
|
||||
snippet dprint "Printk current func and debug info ..."
|
||||
printf("%s: ${1}\n", __func__${2});
|
||||
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
||||
endsnippet
|
||||
|
||||
snippet dprintf "Printk current func and debug info ..."
|
||||
printf("%s: ${1}\n", __func__${2});
|
||||
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
||||
endsnippet
|
||||
|
||||
Reference in New Issue
Block a user