I'm confused about these in VIM. Some things need set and others let. And, how can I check for a certain option. I know it's an option because I use set to change it.
For example, how do I check if current filetype option is java?
|
|
|
|
|
|
|
:set is used for showing option values, setting option values explicitly and toggling them, while :let is used for setting option values as a result of some previous expression (when you define option value by a matter of a variable). Naturally, in vim scripting you're gonna be using :let more. For example:
but you can also
|
|||
|
|
|
|
Options All these options change Vim's behaviour in one way or another.
Many of them are to be used to customize your Vim: you can set how to handle backup files, how to manage text, whether to display the menu and the toolbar, and a bunch of other things.
Several options are local to the buffer or window; they specify for example which syntax highlight and indentation should be used on a buffer.
The Internal variables Internal variables are different things: they are like variables in a program.
You can create or destroy a variable at any time.
They won't affect Vim's behaviour by themselves, only via Vim scripts (e.g. Vim plugins and your .vimrc file) that can read (and modify) their value and do different things based on it.
There are several kinds of internal variables: global variables, local variables, and a few others.
They are described in Variables in an extended sense There are other objects that behave like variables but are not internal variables.
They are also evaluated in expressions, and their value can be set using the |
||
|
|
|
|
Just got this by researching some more:
To get the value of an option, prefix the option with a so, the above can be done as
|
|||
|
|