OFFERINGS

by Steve Dondley

⬅ Notes listing

Author's note: The note below is part of a digital garden. Therefore, it is likely incomplete, inaccurate or both. In other words, it's just like other information sources but perhaps to a higher degree. That said, it may still be worth exploring.

vimscripting

   Updated:

Official documentation

Vim documentation: usr_41

My Notes

  • string comparison
    • "foo" ==? "FOO"
      • “case-insensitive no matter what the user has set”
    • "foo" ==# "FOO"
    • “case-sensitive no matter what the user has set”
    • test if not equal
      • !=?
      • !=#
  • echoing variables
    • echom
  • abort after function name
    • When the [abort] argument is added, the function will abort as soon as an error is detected.

Functions

Tutorials and guides


Other notes linking here:

vim


View the edit history