From 5b3011196f13f9709b7146fd3ed220f7d56d438e Mon Sep 17 00:00:00 2001 From: itchyny Date: Tue, 27 Aug 2013 23:25:40 +0900 Subject: [PATCH] s/abspath/absolutepath/ --- autoload/lightline.vim | 4 ++-- doc/lightline.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/autoload/lightline.vim b/autoload/lightline.vim index bc7561a..2a574d8 100644 --- a/autoload/lightline.vim +++ b/autoload/lightline.vim @@ -3,7 +3,7 @@ " Version: 0.0 " Author: itchyny " License: MIT License -" Last Change: 2013/08/27 23:24:21. +" Last Change: 2013/08/27 23:25:05. " ============================================================================= let s:save_cpo = &cpo @@ -48,7 +48,7 @@ function! lightline#init() let s:lightline.component = get(s:lightline, 'component', {}) call extend(s:lightline.component, { \ 'mode': '%{lightline#mode()}', - \ 'abspath': '%F', 'relativepath': '%f', 'filename': '%t', 'modified': '%M', 'bufnum': '%n', + \ 'absolutepath': '%F', 'relativepath': '%f', 'filename': '%t', 'modified': '%M', 'bufnum': '%n', \ 'paste': '%{&paste?"PASTE":""}', 'readonly': '%R', 'charvalue': '%b', 'charvaluehex': '%B', \ 'fileencoding': '%{strlen(&fenc)?&fenc:&enc}', 'fileformat': '%{&fileformat}', \ 'filetype': '%{strlen(&filetype)?&filetype:"no ft"}', 'percent': '%3p%%', 'percentwin': '%P', diff --git a/doc/lightline.txt b/doc/lightline.txt index fefc958..3b51f0d 100644 --- a/doc/lightline.txt +++ b/doc/lightline.txt @@ -4,7 +4,7 @@ Version: 0.0 Author: itchyny (https://github.com/itchyny) License: MIT License Repository: https://github.com/itchyny/lightline.vim -Last Change: 2013/08/27 21:57:06. +Last Change: 2013/08/27 23:25:34. CONTENTS *lightline-contents* @@ -73,7 +73,7 @@ OPTIONS *lightline-option* > let g:lightline.component = { \ 'mode': '%{lightline#mode()}', - \ 'fullpath': '%F', + \ 'absolutepath': '%F', \ 'relativepath': '%f', \ 'filename': '%t', \ 'modified': '%M',