We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df00b63 commit 951a5bcCopy full SHA for 951a5bc
autoload/rails.vim
@@ -927,7 +927,8 @@ function! s:app_start_rails_command(cmd, ...) dict abort
927
call s:push_chdir(1)
928
try
929
if exists(':Start') == 2
930
- exe 'Start'.(a:0 && a:1 ? '!' : '').' -title=rails\ '.title.' '.cmd
+ let title = escape(fnamemodify(self.path(), ':t').' '.title, ' ')
931
+ exe 'Start'.(a:0 && a:1 ? '!' : '').' -title='.title.' '.cmd
932
elseif has("win32")
933
exe "!start ".cmd
934
else
0 commit comments