forked from aniani/vim
Put quotes around the gvim.exe path for the "Open with" menu entry.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
*todo.txt* For Vim version 7.3d. Last change: 2010 Aug 01
|
*todo.txt* For Vim version 7.3d. Last change: 2010 Aug 02
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@@ -30,6 +30,9 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
|
|||||||
*known-bugs*
|
*known-bugs*
|
||||||
-------------------- Known bugs and current work -----------------------
|
-------------------- Known bugs and current work -----------------------
|
||||||
|
|
||||||
|
Using uninitialized memory when crypting an empty file. (Dominique Pelle, 2010
|
||||||
|
Aug 2)
|
||||||
|
|
||||||
Before release 7.3:
|
Before release 7.3:
|
||||||
- Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)
|
- Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)
|
||||||
|
|
||||||
|
@@ -1463,7 +1463,7 @@ register_openwith(
|
|||||||
char exe_cmd[BUFSIZE];
|
char exe_cmd[BUFSIZE];
|
||||||
LONG lRet;
|
LONG lRet;
|
||||||
|
|
||||||
sprintf(exe_cmd, "%s \"%%1\"", exe_path);
|
sprintf(exe_cmd, "\"%s\" \"%%1\"", exe_path);
|
||||||
lRet = reg_create_key_and_value(
|
lRet = reg_create_key_and_value(
|
||||||
hRootKey,
|
hRootKey,
|
||||||
"Applications\\gvim.exe\\shell\\edit\\command",
|
"Applications\\gvim.exe\\shell\\edit\\command",
|
||||||
|
Reference in New Issue
Block a user