summaryrefslogtreecommitdiff
path: root/src/option.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.1520: completion for option name includes all bool optionsv9.0.1520Bram Moolenaar2023-05-061-3/+5
* patch 9.0.1481: decrypting with libsodium may fail if the library changesv9.0.1481Christian Brabandt2023-04-231-1/+1
* patch 9.0.1405: missing check for out-of-memoryv9.0.1405Bram Moolenaar2023-03-151-14/+16
* patch 9.0.1403: unused variables and functionsv9.0.1403Dominique Pelle2023-03-121-9/+0
* patch 9.0.1391: "clear" macros are not always usedv9.0.1391Yegappan Lakshmanan2023-03-071-2/+2
* patch 9.0.1380: CTRL-X on 2**64 subtracts twov9.0.1380Bram Moolenaar2023-03-041-1/+1
* patch 9.0.1379: functions for handling options are not orderedv9.0.1379Yegappan Lakshmanan2023-03-041-933/+925
* patch 9.0.1369: still some "else if" constructs for setting optionsv9.0.1369Yegappan Lakshmanan2023-03-021-142/+73
* patch 9.0.1353: too many "else if" statements to handle option valuesv9.0.1353Yegappan Lakshmanan2023-02-251-0/+2
* patch 9.0.1330: handling new value of an option has a long "else if" chainv9.0.1330Yegappan Lakshmanan2023-02-201-399/+328
* patch 9.0.1313: some settings use the current codepage instead of 'encoding'v9.0.1313K.Takata2023-02-151-1/+2
* patch 9.0.1311: Coverity warns for using a NULL pointerv9.0.1311Bram Moolenaar2023-02-151-0/+2
* patch 9.0.1308: the code for setting options is too complicatedv9.0.1308Yegappan Lakshmanan2023-02-141-358/+492
* patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errorsv9.0.1307Yegappan Lakshmanan2023-02-131-2/+5
* patch 9.0.1295: the option initialization function is too longv9.0.1295Yegappan Lakshmanan2023-02-101-257/+353
* patch 9.0.1294: the set_bool_option() function is too longv9.0.1294Yegappan Lakshmanan2023-02-091-393/+680
* patch 9.0.1293: the set_num_option() is too longv9.0.1293Yegappan Lakshmanan2023-02-091-319/+542
* patch 9.0.1286: Coverity warns for using a NULL pointerv9.0.1286Bram Moolenaar2023-02-061-4/+11
* patch 9.0.1284: compiler warnings for uninitialized variablesv9.0.1284Bram Moolenaar2023-02-051-2/+2
* patch 9.0.1283: the code for setting options is too complicatedv9.0.1283Yegappan Lakshmanan2023-02-051-302/+460
* patch 9.0.1275: the code for setting options is too complicatedv9.0.1275Yegappan Lakshmanan2023-02-021-473/+507
* patch 9.0.1242: code for :runtime completion is not consistentv9.0.1242zeertzjq2023-01-251-7/+7
* patch 9.0.1215: using isalpha() adds dependency on current localev9.0.1215zeertzjq2023-01-171-1/+1
* patch 9.0.1208: code is indented more than necessaryv9.0.1208Yegappan Lakshmanan2023-01-161-46/+47
* patch 9.0.0990: callback name argument is changed by setqflist()v9.0.0990Bram Moolenaar2022-12-021-0/+2
* patch 9.0.0963: function name does not match autocmd event namev9.0.0963zeertzjq2022-11-281-1/+1
* patch 9.0.0921: missing defined(PROTO) in #ifdefv9.0.0921Bram Moolenaar2022-11-221-20/+23
* patch 9.0.0835: the window title is not redrawn when 'endoffile' changesv9.0.0835K.Takata2022-11-051-12/+6
* Add missing entry for the 'endoffile' option.Bram Moolenaar2022-10-281-0/+1
* patch 9.0.0761: cannot use 'indentexpr' for Lisp indentingv9.0.0761Bram Moolenaar2022-10-151-0/+3
* patch 9.0.0747: too many #ifdefsv9.0.0747Martin Tournoij2022-10-131-9/+1
* patch 9.0.0670: no space for command line when there is a tablinev9.0.0670Bram Moolenaar2022-10-061-1/+2
* patch 9.0.0665: setting 'cmdheight' has no effect if last window was resizedv9.0.0665Bram Moolenaar2022-10-051-2/+3
* patch 9.0.0657: too many #ifdefsv9.0.0657Martin Tournoij2022-10-041-4/+0
* patch 9.0.0644: 'smoothscroll' is not copied to a new window on :splitv9.0.0644Bram Moolenaar2022-10-031-0/+1
* patch 9.0.0640: cannot scroll by screen line if a line wrapsv9.0.0640Bram Moolenaar2022-10-021-0/+10
* patch 9.0.0544: minor issues with setting a string optionv9.0.0544zeertzjq2022-09-221-7/+5
* patch 9.0.0540: assigning stack variable to argument confuses Coverityv9.0.0540Bram Moolenaar2022-09-221-24/+26
* patch 9.0.0537: the do_set() function is much too longv9.0.0537Bram Moolenaar2022-09-211-435/+440
* patch 9.0.0449: there is no easy way to translate a key code into a stringv9.0.0449zeertzjq2022-09-121-2/+3
* patch 9.0.0340: the 'cmdheight' zero support causes too much troublev9.0.0340Bram Moolenaar2022-08-311-1/+1
* patch 9.0.0318: clearing screen causes flickerv9.0.0318Bram Moolenaar2022-08-291-1/+1
* patch 9.0.0278: the +wildignore feature is nearly always availablev9.0.0278Bram Moolenaar2022-08-261-10/+8
* patch 9.0.0265: no good reason why the "gf" command isn't in the tiny versionv9.0.0265Bram Moolenaar2022-08-251-13/+1
* patch 9.0.0222: no good reason why text objects are only in larger buildsv9.0.0222Bram Moolenaar2022-08-161-4/+0
* patch 9.0.0206: redraw flags are not named specificallyv9.0.0206Bram Moolenaar2022-08-141-11/+11
* patch 9.0.0114: the command line takes up space even when not usedv9.0.0114Shougo Matsushita2022-07-301-1/+1
* patch 9.0.0096: flag "new_value_alloced" is always truev9.0.0096zeertzjq2022-07-271-7/+1
* patch 9.0.0090: no error when assigning bool to a string optionv9.0.0090Bram Moolenaar2022-07-271-0/+14
* patch 9.0.0040: use of set_chars_option() is confusingv9.0.0040Bram Moolenaar2022-07-041-6/+6