~ubuntu-branches/debian/sid/neovim/sid

« back to all changes in this revision

Viewing changes to runtime/doc/options.txt

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-04-18 21:42:19 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20160418214219-6lf1w0zadujghas7
Tags: upstream-0.1.3
ImportĀ upstreamĀ versionĀ 0.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
:se[t] {option}&vim     Reset option to its Vim default value.
51
51
 
52
52
:se[t] all&             Set all options, except terminal options, to their
53
 
                        default value.  The values of 'term', 'lines' and
54
 
                        'columns' are not changed.
 
53
                        default value.  The values of 'lines' and 'columns'
 
54
                        are not changed.
55
55
 
56
56
                                                *:set-args* *E487* *E521*
57
57
:se[t] {option}={value}         or
772
772
        putting a ":gui" command in the gvimrc file, before where the value
773
773
        of 'background' is used (e.g., before ":syntax on").
774
774
 
775
 
        For Windows the default is "dark".
776
 
        For other systems "dark" is used when 'term' is "linux",
777
 
        "screen.linux", "cygwin" or "putty", or $COLORFGBG suggests a dark
778
 
        background.  Otherwise the default is "light".
 
775
        For Windows the default is "dark". "dark" should be used if $COLORFGBG
 
776
        suggests a dark background (not yet implemented). Otherwise the default
 
777
        is "light".
779
778
 
780
779
        Normally this option would be set in the vimrc file.  Possibly
781
780
        depending on the terminal name.  Example: >
782
 
                :if &term == "xterm"
 
781
                :if $TERM == "xterm"
783
782
                :  set background=dark
784
783
                :endif
785
784
<       When this option is set, the default settings for the highlight groups
1361
1360
                        option, yank and delete operations (but not put)
1362
1361
                        will additionally copy the text into register
1363
1362
                        '*'. See |nvim-clipboard|.
1364
 
<
 
1363
 
1365
1364
                                                *clipboard-autoselect*
1366
1365
        autoselect      Works like the 'a' flag in 'guioptions': If present,
1367
1366
                        then whenever Visual mode is started, or the Visual
5539
5538
          c     don't give |ins-completion-menu| messages.  For example,
5540
5539
                "-- XXX completion (YYY)", "match 1 of 2", "The only match",
5541
5540
                "Pattern not found", "Back at original", etc.
 
5541
          q     use "recording" instead of "recording @a"
 
5542
          F     don't give the file info when editing a file, like `:silent`
 
5543
                was used for the command
5542
5544
 
5543
5545
        This gives you the opportunity to avoid that a change between buffers
5544
5546
        requires you to hit <Enter>, but still gives as useful a message as
6177
6179
           split        If included, split the current window before loading
6178
6180
                        a buffer for a |quickfix| command that display errors.
6179
6181
                        Otherwise: do not split, use current window.
 
6182
           vsplit       Just like "split" but split vertically.
6180
6183
           newtab       Like "split", but open a new tab page.  Overrules
6181
6184
                        "split" when both are present.
6182
6185
 
6370
6373
        mapping which should not change the tagstack.
6371
6374
 
6372
6375
                                                *'term'* *E529* *E530* *E531*
6373
 
'term'                  string  (default is $TERM, if that fails:
6374
 
                                      in the GUI: "builtin_gui"
6375
 
                                          on Mac: "mac-ansi"
6376
 
                                         on Unix: "ansi"
6377
 
                                       on Windows: "win32")
6378
 
                        global
6379
 
        Name of the terminal.  Used for choosing the terminal control
6380
 
        characters.  Environment variables are expanded |:set_env|.
6381
 
        For example: >
6382
 
                :set term=$TERM
6383
 
<       See |termcap|.
 
6376
'term'                  Removed. |vim-differences| {Nvim}
6384
6377
 
6385
6378
                                                *'termbidi'* *'tbidi'*
6386
6379
                                                *'notermbidi'* *'notbidi'*
6560
6553
'ttyscroll' 'tsl'       Removed. |vim-differences| {Nvim}
6561
6554
 
6562
6555
                                                *'ttytype'* *'tty'*
6563
 
'ttytype' 'tty'         string  (default from $TERM)
6564
 
                        global
6565
 
        Alias for 'term', see above.
 
6556
'ttytype' 'tty'         Alias for 'term'. Removed. |vim-differences| {Nvim}
6566
6557
 
6567
6558
                                                *'undodir'* *'udir'* *E926*
6568
6559
'undodir' 'udir'        string  (default "$XDG_DATA_HOME/nvim/undo")