|
Karsten Hopp |
81c285 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
81c285 |
Subject: Patch 7.2.227
|
|
Karsten Hopp |
81c285 |
Fcc: outbox
|
|
Karsten Hopp |
81c285 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
81c285 |
Mime-Version: 1.0
|
|
Karsten Hopp |
81c285 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
81c285 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
81c285 |
------------
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
Patch 7.2.227
|
|
Karsten Hopp |
81c285 |
Problem: When using ":cd" in a script there is no way to track this.
|
|
Karsten Hopp |
81c285 |
Solution: Display the directory when 'verbose' is 5 or higher.
|
|
Karsten Hopp |
81c285 |
Files: src/ex_docmd.c
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
*** ../vim-7.2.226/src/ex_docmd.c 2009-07-09 20:06:30.000000000 +0200
|
|
Karsten Hopp |
81c285 |
--- src/ex_docmd.c 2009-07-09 15:24:03.000000000 +0200
|
|
Karsten Hopp |
81c285 |
***************
|
|
Karsten Hopp |
81c285 |
*** 7964,7970 ****
|
|
Karsten Hopp |
81c285 |
shorten_fnames(TRUE);
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
/* Echo the new current directory if the command was typed. */
|
|
Karsten Hopp |
81c285 |
! if (KeyTyped)
|
|
Karsten Hopp |
81c285 |
ex_pwd(eap);
|
|
Karsten Hopp |
81c285 |
}
|
|
Karsten Hopp |
81c285 |
vim_free(tofree);
|
|
Karsten Hopp |
81c285 |
--- 7964,7970 ----
|
|
Karsten Hopp |
81c285 |
shorten_fnames(TRUE);
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
/* Echo the new current directory if the command was typed. */
|
|
Karsten Hopp |
81c285 |
! if (KeyTyped || p_verbose >= 5)
|
|
Karsten Hopp |
81c285 |
ex_pwd(eap);
|
|
Karsten Hopp |
81c285 |
}
|
|
Karsten Hopp |
81c285 |
vim_free(tofree);
|
|
Karsten Hopp |
81c285 |
*** ../vim-7.2.226/src/version.c 2009-07-09 20:06:30.000000000 +0200
|
|
Karsten Hopp |
81c285 |
--- src/version.c 2009-07-09 20:13:13.000000000 +0200
|
|
Karsten Hopp |
81c285 |
***************
|
|
Karsten Hopp |
81c285 |
*** 678,679 ****
|
|
Karsten Hopp |
81c285 |
--- 678,681 ----
|
|
Karsten Hopp |
81c285 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
81c285 |
+ /**/
|
|
Karsten Hopp |
81c285 |
+ 227,
|
|
Karsten Hopp |
81c285 |
/**/
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
--
|
|
Karsten Hopp |
81c285 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
81c285 |
83. Batteries in the TV remote now last for months.
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
81c285 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
81c285 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
81c285 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|