Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. :let g:var_name = 1
  2.  
  3. buffer-variable b: Local to the current buffer.
  4. window-variable w: Local to the current window.
  5. tabpage-variable t: Local to the current tab page.
  6. global-variable g: Global.
  7. local-variable l: Local to a function.
  8. script-variable s: Local to a |:source|'ed Vim script.
  9. function-argument a: Function argument (only inside a function).
  10. vim-variable v: Global, predefined by Vim.
  11.  
  12. let g:var_name = 1
  13.  
  14. let g:javascript_conceal = 1
  15.  
  16. autocmd Filetype javascript let b:javascript_fold = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement