-*develop.txt* For Vim version 9.1. Last change: 2024 Dec 25
+*develop.txt* For Vim version 9.1. Last change: 2025 Apr 18
VIM REFERENCE MANUAL by Bram Moolenaar
since this triggers the test suite.
*style-clang-format*
-sound.c and sign.c can be (semi-) automatically formated using the
+sound.c and sign.c can be (semi-) automatically formatted using the
`clang-format` formatter according to the distributed .clang-format file.
Other source files do not yet correspond to the .clang-format file. This may
change in the future and they may be reformatted as well.
-*version9.txt* For Vim version 9.1. Last change: 2025 Apr 16
+*version9.txt* For Vim version 9.1. Last change: 2025 Apr 18
VIM REFERENCE MANUAL by Bram Moolenaar
- the default 'backspace' option for Vim has been set to "indent,eol,start"
and removed from |defaults.vim|
- the default fontsize for the GTK builds of Vim (Windows and Unix) has been
- increased to 12pt to accomodate modern high-dpi monitors
+ increased to 12pt to accommodate modern high-dpi monitors
- the default value of the 'keyprotocol' option has been updated and support
for the ghostty terminal emulator (using kitty protocol) has been added
Options: ~
'chistory' Size of the quickfix stack |quickfix-stack|.
-'completefuzzycollect' Enable fuzzy collection of candiates for (some)
+'completefuzzycollect' Enable fuzzy collection of candidates for (some)
|ins-completion| modes
'completeitemalign' Order of |complete-items| in Insert mode completion
popup
}
/*
- * Find the inline difference within a diff block among differnt buffers. Do
+ * Find the inline difference within a diff block among different buffers. Do
* this by splitting each block's content into characters or words, and then
* use internal xdiff to calculate the per-character/word diff. The result is
* stored in dp instead of returned by the function.
{
// Remember the results if using simple since it's recalculated per
// call. Otherwise just call diff_find_change() every time since
- // internally the result is cached interally.
+ // internally the result is cached internally.
cache_results = FALSE;
}
}
break;
- // "zp", "zP" in block mode put without addind trailing spaces
+ // "zp", "zP" in block mode put without adding trailing spaces
case 'P':
case 'p': nv_put(cap);
break;
int sum = 0;
int i;
- // Perform the summation for indeces within the actual array.
+ // Perform the summation for indices within the actual array.
for (i = 1; i <= index && i <= vts_array[0]; i++)
sum += vts_array[i];
- // Add topstops whose indeces exceed the actual array.
+ // Add tabstops whose indices exceed the actual array.
if (i <= index)
sum += vts_array[vts_array[0]] * (index - vts_array[0]);
ws.ws_col = cols;
ws.ws_row = rows;
- // calcurate and set tty pixel size
+ // calculate and set tty pixel size
struct cellsize cs;
mch_calc_cell_size(&cs);
};
static qf_info_T ql_info_actual; // global quickfix list
-static qf_info_T *ql_info; // points to ql_info_actual if memory allocation is sucessful.
+static qf_info_T *ql_info; // points to ql_info_actual if memory allocation is successful.
static int_u last_qf_id = 0; // Last used quickfix list id
#define FMT_PATTERNS 14 // maximum number of % recognized
// Do those ones first, both may cause a screen redraw.
"Co",
// disabled, because it switches termguicolors, but that
- // is noticable and confuses users
+ // is noticeable and confuses users
// "RGB",
# endif
"ku", "kd", "kr", "kl",
call feedkeys("Gofuzzy\<C-X>\<C-N>\<C-N>\<C-N>\<C-Y>\<Esc>0", 'tx!')
call assert_equal('completefuzzycollect', getline('.'))
- execute('%d _')
+ %d _
call setline(1, ['fuzzy', 'fuzzy foo', "fuzzy bar", 'fuzzycollect'])
call feedkeys("Gofuzzy\<C-X>\<C-N>\<C-N>\<C-N>\<C-Y>\<Esc>0", 'tx!')
call assert_equal('fuzzycollect', getline('.'))
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1319,
/**/
1318,
/**/