-
Hi, Bram !
First of all, thanks for the nice software.
I have made several minor enhancements to the mp3blaster, so
please find 3 patches in the patches area (i have sent them to
your sourceforge e-mail address as well, don't know either it has
reaches you or not):
UTF8 chars (Russian) are displayed properly
/<CR> - jumps to the currently played song
/*<PATTERN> -...
2009-03-17 22:36:46 UTC in Mp3blaster
-
/* - special search in playlist
Problem
Sometimes it is hard to locate the song, especially if playlist
is big, and user knows only part of the song's name. Lookup in
playlist matches currently starts from the first character, and
if there some leading trash (like "10 - Best Of Jazz..."), or one
isn't sure, what is going first - Artist or Song... You can
imagine how hard it...
2009-03-14 23:08:06 UTC in Mp3blaster
-
/ - jumps to the currently played song
The problem
In case the playlist is big and playback is in "shuffle" mode, it
is relatively hard to quickly find the song, which is actually
played (for instance, to remove this song from playlist).
The solution
Added special handling of empty pattern to the "search the
playlist" feature. After search is started ('/' is pressed), user...
2009-03-14 23:06:40 UTC in Mp3blaster
-
UTF8 chars (Russian) are displayed properly
to display them two things are necessary:
1) link against ncursesw instead of ncurses (i.e., the library
name must have trailing _w_ character)
2) setlocale() call before initscr()
Note, that changes in configure.ac requires one to re-run the
automake (autoconf ? I'm not very familiar with those)
2009-03-14 23:04:59 UTC in Mp3blaster
-
This project seems to be non-active since long time...
You can have a look to eclim[1]
They maintains now fork of the vimplugin code
--
Anton
[1] eclim
http://eclim.sourceforge.net/index.html.
2009-02-05 16:37:23 UTC in vimplugin
-
This project seems to be non-active since long time...
You can have a look to eclim[1]
They maintains now fork of the vimplugin code
--
Anton
[1] eclim
http://eclim.sourceforge.net/index.html.
2009-02-05 10:10:06 UTC in vimplugin
-
Strange. I just did small experiment. If I change my
/data/install/ecli/eclipse/plugins/org.eclim_1.4.1/log4j.xml
to something like this:
<param name="file" value="~/eclimd.log"/>
it doesn't work - I seem to not have any log output at all. But
if I use full name instead of just ~/eclimd.log:
<param name="file"...
2008-09-26 17:23:57 UTC in eclim (eclipse + vim)
-
Two quick-n-dirty temporary workarounds: 1) you can obviously change this line in log4j.xml to point to some writeable location like /tmp/eclimd.log or /var/log/eclimd.log. 2) Second workaround is to make this location writeable by your unprivileged user.
AFAIK you can't just tweak ${eclim.home}, since the same variable is used internally during startup of org.eclim.eclipse.EclimApplication...
2008-09-26 06:32:28 UTC in eclim (eclipse + vim)
-
Sorry, I was too quick and has overlooked one important detail
about disabling the plugin. So, now is correction.
To disable Eclim vim plugin without uninstalling, please put
following snippet in your ~/.vimrc:
command! EclimDisable0 let g:EclimDisabled = 1
command! EclimEnable0 unlet g:EclimDisabled
EclimDisable0
PS: Please note, that there are also built-in command
:EclimDisable...
2008-09-22 07:03:01 UTC in eclim (eclipse + vim)
-
You don't need to uninstall plugin if you have issues with VIM
startup time. Just put
EclimDisable
line in your ~/.vimrc. (This assumes you have recent version of
eclim - 1.4.1 IIRC - installed).
For proper uninstall procedure you can wait until Eric reply. Or, if it is very
urgent, you just can remove your eclim directory in ~/.vim, like
this:
rm -rf ~/.vim/eclim
and remove...
2008-09-22 06:48:57 UTC in eclim (eclipse + vim)