Skip to content

Commit

Permalink
fix: rename all occurences to projectlocal.vim
Browse files Browse the repository at this point in the history
  • Loading branch information
creativenull committed Mar 28, 2023
1 parent 05b7f5a commit b8ba37d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion denops/projectlocal/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export async function registerBufNewFileEvents(denops: Denops): Promise<void> {
async function getPluginDir(denops: Denops): Promise<string> {
const rawRtp = await opt.runtimepath.get(denops);
const rtp = rawRtp.split(",");
const dir = rtp.find((item: string) => item.includes("projectlocal-vim"));
const dir = rtp.find((item: string) => item.includes("projectlocal.vim"));

return dir ?? "";
}
Expand Down
6 changes: 3 additions & 3 deletions doc/projectlocal.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
INTRODUCTION *projectlocal-vim* *projectlocal*
INTRODUCTION *projectlocal.vim* *projectlocal*

Load your project configurations safely, for vim and neovim. Write your
project configurations in vimscript, lua or json - and have it loaded safely
Expand Down Expand Up @@ -126,8 +126,8 @@ server.
+ Add the following to the lua file:

>
-- Powered by projectlocal-vim
-- https://github.com/creativenull/projectlocal-vim
-- Powered by projectlocal.vim
-- https://github.com/creativenull/projectlocal.vim
local lspconfig = require('lspconfig')
local projectlocal = require('projectlocal.lsp')
Expand Down
4 changes: 2 additions & 2 deletions templates/skeleton.lua
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-- Powered by projectlocal-vim
-- https://github.com/creativenull/projectlocal-vim
-- Powered by projectlocal.vim
-- https://github.com/creativenull/projectlocal.vim
4 changes: 2 additions & 2 deletions templates/skeleton.vim
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
" Powered by projectlocal-vim
" https://github.com/creativenull/projectlocal-vim
" Powered by projectlocal.vim
" https://github.com/creativenull/projectlocal.vim

0 comments on commit b8ba37d

Please sign in to comment.