Michael Henry wrote:
> It appears that the output from :echo and :echomsg does not
> show up properly when used from the Command-line window
> while a QuickFix window is open.
>
> Steps to reproduce:
>
> - Startup Vim clean:
>
> vim -u NONE -N
>
> - Test regular :echo command:
>
> :
Yanwei wrote:
> For a 2 byte BOM "FF FE", "ucs-2le" is used, which doesn't work for
> little-endian UTF-16 text. Like the patch 7.1.261, the only difference
> is the byte order. And I have also writen a patch for Vim-7.2.025:
Looks good, thanks. I'll include it.
--
hundred-and-one symptoms
Alexis Wilke wrote:
> I'm developing on Drupal now a days and find it annoying that gvim cannot
> detect that the .module are PHP files. So I added a few lines of code to
> my filetype.vim to paliate. I would imagine some other vi lovers will run
> in this one too. We could also support the .
Patch 7.2.026 (after 7.2.010)
Problem:"K" doesn't use the length of the identifier but uses the rest of
the line.
Solution: Copy the desired number of characters first.
Files: src/normal.c
*** ../vim-7.2.025/src/normal.c Thu Oct 2 22:55:17 2008
--- src/normal.cSa
All,
It appears that the output from :echo and :echomsg does not
show up properly when used from the Command-line window
while a QuickFix window is open.
Steps to reproduce:
- Startup Vim clean:
vim -u NONE -N
- Test regular :echo command:
:echo "Hello"
This works properly.
- Op