aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-06-25 03:47:54 -0400
committertdro <tdro@users.noreply.github.com>2020-06-25 03:47:54 -0400
commit2d82f3bbdcfe305498101832012ce7bd73a7539f (patch)
tree6d4a50dbb50000c42fcf36e76b2c6428281f74cc /.vimrc
parent38301725747429d2ebb544834275ae5415ee51e7 (diff)
downloaddotfiles-2d82f3bbdcfe305498101832012ce7bd73a7539f.tar.gz
dotfiles-2d82f3bbdcfe305498101832012ce7bd73a7539f.tar.bz2
dotfiles-2d82f3bbdcfe305498101832012ce7bd73a7539f.zip
.vimrc: Add filetype in post save note
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index afdec25..4aec896 100644
--- a/.vimrc
+++ b/.vimrc
@@ -320,7 +320,7 @@ augroup AutoCommands
" Automatically save file on insert and idle.
autocmd InsertLeave,CursorHold * silent! write
\| silent! exec "!~/.vim/hooks/post-save > /dev/null 2>&1 &"
- \| :echo 'Saved' @% '...'
+ \| :echo @% '[filetype=' . &filetype . ']'
augroup END