-*cmdline.txt* For Vim version 7.0aa. Last change: 2004 Dec 20
+*cmdline.txt* For Vim version 7.0aa. Last change: 2005 Jan 13
VIM REFERENCE MANUAL by Bram Moolenaar
'=' the expression register: you are prompted to
enter an expression (see |expression|)
See |registers| about registers. {not in Vi}
+ Implementation detail: When using the |expression| register
+ and invoking setcmdpos(), this sets the position before
+ inserting the resulting string. Use CTRL-R CTRL-R to set the
+ position afterwards.
CTRL-R CTRL-F *c_CTRL-R_CTRL-F* *c_<C-R>_<C-F>*
CTRL-R CTRL-P *c_CTRL-R_CTRL-P* *c_<C-R>_<C-P>*
-*gui.txt* For Vim version 7.0aa. Last change: 2004 Dec 29
+*gui.txt* For Vim version 7.0aa. Last change: 2005 Jan 14
VIM REFERENCE MANUAL by Bram Moolenaar
==============================================================================
2. Scrollbars *gui-scrollbars*
-There are vertical scrollbars and a horizontal scrollbars. You may
+There are vertical scrollbars and a horizontal scrollbar. You may
configure which ones appear with the 'guioptions' option.
The interface looks like this (with ":set guioptions=mlrb"):
necessary, it must remain on a visible character (unless 'virtualedit' is
set).
-Computing the length of the longest visible takes quite a bit of computation,
-and it has to be done every time something changes. If this takes too much
-time or you don't like the cursor jumping to another line, include the 'h'
-flag in 'guioptions'. Then the scrolling is limited by the text of the
-current cursor line.
+Computing the length of the longest visible line takes quite a bit of
+computation, and it has to be done every time something changes. If this
+takes too much time or you don't like the cursor jumping to another line,
+include the 'h' flag in 'guioptions'. Then the scrolling is limited by the
+text of the current cursor line.
*athena-intellimouse*
If you have an Intellimouse and an X server that supports using the wheel,
" Polish letters keymap for cp852
" Maintainer: HS6_06 <hs6_06@o2.pl>
-" Last Changed: 2005 Jan 9
+" Last Changed: 2005 Jan 12
+" Current version: 1.0.2
+" History: see polish-slash.vim
" This keymap adds the special Polish letters
" to an existing Latin keyboard.
" instead of AltGr+{acelnosxz} you ve to use "/" followed by {acelnosxz}
" short keymap name for statusline
-let b:keymap_name = "polish-slash-cp852"
+let b:keymap_name = "PL-slash-DOS"
scriptencoding latin1
" Polish letters keymap for utf-8
" Maintainer: HS6_06 <hs6_06@o2.pl>
-" Last Changed: 2005 Jan 9
+" Last Changed: 2005 Jan 12
+" Current version: 1.0.2
+" History: see polish-slash.vim
" This keymap adds the special Polish letters
" to an existing Latin keyboard.
" instead of AltGr+{acelnosxz} you ve to use "/" followed by {acelnosxz}
" short keymap name for statusline
-let b:keymap_name = "polish-slash-UTF-8"
+let b:keymap_name = "PL-slash-UTF"
scriptencoding latin1
menutrans Put\ &Before<Tab>[p Vlo\9eit\ &pøed<Tab>[p
menutrans Put\ &After<Tab>]p Vlo\9ei&t\ za<Tab>]p
menutrans &Delete<Tab>x &Smazat<Tab>x
-menutrans &Select\ all<Tab>ggVG Vy&brat\ v\9ae<Tab>ggVG
+menutrans &Select\ All<Tab>ggVG Vy&brat\ v\9ae<Tab>ggVG
menutrans &Find\.\.\. &Hledat\.\.\.
menutrans Find\ and\ Rep&lace\.\.\. &Nahradit\.\.\.
menutrans Options\.\.\. Volb&y\.\.\.
menutrans &GUI &Grafické\ rozhraní
menutrans &Credits &Autoøi
menutrans Co&pying &Licenèní\ politika
+menutrans &Sponsor/Register Sponzorování/&Registrace
menutrans &Find\.\.\. &Hledat\.\.\.
menutrans O&rphans O&siøelé\ dìti
menutrans &Version &Verze
menutrans Put\ &Before<Tab>[p Vlozit\ &pred<Tab>[p
menutrans Put\ &After<Tab>]p Vlozi&t\ za<Tab>]p
menutrans &Delete<Tab>x &Smazat<Tab>x
-menutrans &Select\ all<Tab>ggVG Vy&brat\ vse<Tab>ggVG
+menutrans &Select\ All<Tab>ggVG Vy&brat\ vse<Tab>ggVG
menutrans &Find\.\.\. &Hledat\.\.\.
menutrans Find\ and\ Rep&lace\.\.\. &Nahradit\.\.\.
menutrans Options\.\.\. Volb&y\.\.\.
menutrans &GUI &Graficke\ rozhrani
menutrans &Credits &Autori
menutrans Co&pying &Licencni\ politika
+menutrans &Sponsor/Register Sponzorovani/&Registrace
menutrans &Find\.\.\. &Hledat\.\.\.
menutrans O&rphans O&sirele\ deti
menutrans &Version &Verze
ex_startinsert(eap)
exarg_T *eap;
{
+ if (eap->forceit)
+ {
+ coladvance((colnr_T)MAXCOL);
+ curwin->w_curswant = MAXCOL;
+ curwin->w_set_curswant = FALSE;
+ }
+
/* Ignore the command when already in Insert mode. Inserting an
* expression register that invokes a function can do this. */
if (State & INSERT)
if (eap->forceit)
{
- coladvance((colnr_T)MAXCOL);
- curwin->w_curswant = MAXCOL;
- curwin->w_set_curswant = FALSE;
if (eap->cmdidx == CMD_startinsert)
restart_edit = 'a';
else
EXTERN char_u e_endfor[] INIT(=N_("E170: Missing :endfor"));
EXTERN char_u e_while[] INIT(=N_("E588: :endwhile without :while"));
EXTERN char_u e_for[] INIT(=N_("E588: :endfor without :for"));
-EXTERN char_u e_listreq[] INIT(=N_("E999: List required"));
#endif
EXTERN char_u e_exists[] INIT(=N_("E13: File exists (add ! to override)"));
EXTERN char_u e_failed[] INIT(=N_("E472: Command failed"));
EXTERN char_u e_re_corr[] INIT(=N_("E44: Corrupted regexp program"));
EXTERN char_u e_readonly[] INIT(=N_("E45: 'readonly' option is set (add ! to override)"));
#ifdef FEAT_EVAL
-EXTERN char_u e_readonlyvar[] INIT(=N_("E46: Cannot set read-only variable \"%s\""));
+EXTERN char_u e_readonlyvar[] INIT(=N_("E46: Cannot change read-only variable \"%s\""));
EXTERN char_u e_readonlysbx[] INIT(=N_("E46: Cannot set variable in the sandbox: \"%s\""));
#endif
#ifdef FEAT_QUICKFIX
* multi-byte characters if needed.
* mb_ptr_back(): backup a pointer to the previous character, taking care of
* multi-byte characters if needed.
+ * MB_COPY_CHAR(f, t): copy one char from "f" to "t" and advance the pointers.
*/
#ifdef FEAT_MBYTE
# define mb_ptr_adv(p) p += has_mbyte ? (*mb_ptr2len_check)(p) : 1
# define mb_ptr_back(s, p) p -= has_mbyte ? ((*mb_head_off)(s, p - 1) + 1) : 1
+# define MB_COPY_CHAR(f, t) if (has_mbyte) mb_copy_char(&f, &t); else *t++ = *f++
#else
# define mb_ptr_adv(p) ++p
# define mb_ptr_back(s, p) --p
+# define MB_COPY_CHAR(f, t) *t++ = *f++
#endif
# define OK 1
#endif
#define FAIL 0
+#define NOTDONE 2 /* not OK or FAIL but skipped */
/* flags for b_flags */
#define BF_RECOVERED 0x01 /* buffer has been recovered */