Skip to content

Commit eda28c3

Browse files
committed
Rename "path" to "path_additions"
1 parent 8526877 commit eda28c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

autoload/rails.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4405,7 +4405,7 @@ function! s:SetBasePath()
44054405
call filter(old_path,'!s:startswith(v:val,transformed_path)')
44064406

44074407
let path = ['lib', 'vendor']
4408-
let path += self.app().config('path', [])
4408+
let path += self.app().config('path_additions', [])
44094409
let path += ['app/controllers', 'app/helpers', 'app/mailers', 'app/models', 'app/*', 'app/models/concerns', 'app/controllers/concerns']
44104410
let path += ['app/views']
44114411
if self.controller_name() != ''

doc/rails.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ be checked into version control. Example:
848848
"template": "Fabricator :%s do\nend"
849849
}
850850
},
851-
"path": ["app/services"]
851+
"path_additions": ["app/services"]
852852
}
853853
<
854854
This "classifications" section is used to provide navigation commands. The

0 commit comments

Comments
 (0)