Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix error in calling function path2project #6

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- Access the root directory of a project with a customizable action
- Check version control status for all added projects
- List todos in a project directory
- Add projects automatically in background (currently only support neovim)
- Bookmarks
- Keep a list of bookmarked locations
- TODOs
Expand Down
26 changes: 20 additions & 6 deletions rplugin/python3/denite/kind/projectile.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from os.path import basename, isdir, normpath

from ..kind.directory import Kind as Directory
from denite.util import expand, input, path2project
from denite.util import expand, path2project


class Kind(Directory):
Expand All @@ -36,15 +36,15 @@ def action_add(self, context):
data_file = expand(self.vars['data_dir'] + '/projects.json')
root_dir = self.vim.call('getcwd')
boofer = self.vim.current.buffer.name
pj_root = path2project(self.vim, boofer, ['.git', '.svn', '.hg'])
pj_root = path2project(self.vim, boofer, '.git,.svn,.hg')
pj_name = basename(normpath(pj_root))
new_data = {}

project_root = input(self.vim, context, 'Project Root: ', pj_root)
project_root = str(self.vim.call('denite#util#input', 'Project Root: ', pj_root, ''))
if not len(project_root):
project_root = pj_root

project_name = input(self.vim, context, 'Project Name: ', pj_name)
project_name = str(self.vim.call('denite#util#input', 'Project Name: ', pj_name, ''))
if not len(project_name):
project_name = pj_name

Expand All @@ -61,10 +61,18 @@ def action_add(self, context):
json_info = json.load(g)
except json.JSONDecodeError:
json_info = []
json_info.append(new_data)

# remove old project information
projects = json_info[:]
for i in range(len(projects)):
if projects[i]['root'] == project_root and projects[i]['name'] == project_name:
projects.pop(i)
break

projects.append(new_data)

with open(data_file, 'w') as f:
json.dump(json_info, f, indent=2)
json.dump(projects, f, indent=2)

def action_delete(self, context):
"""Remove a project from *projects.json*."""
Expand Down Expand Up @@ -96,4 +104,10 @@ def action_custom(self, context):
destination = expand(target['action__path'])
self.vim.call('execute', '{} {}'.format(user_cmd, destination))

def action_open(self, context):
target = context['targets'][0]
if not isdir(target['action__path']):
return
self.vim.command('lcd {}'.format(target['action__path']))
self.vim.command('Denite file/rec')

40 changes: 0 additions & 40 deletions rplugin/python3/denite/source/sauce.py

This file was deleted.

13 changes: 13 additions & 0 deletions rplugin/python3/projectile/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import pynvim
from projectile.projectile import Projectile


@pynvim.plugin
class ProjectileHandlers(object):
def __init__(self, nvim):
self._nvim = nvim
self._projectile = Projectile(self._nvim)

@pynvim.autocmd('BufRead', pattern='*', sync=False)
def on_bufread(self):
self._projectile.auto_add_project()
46 changes: 46 additions & 0 deletions rplugin/python3/projectile/projectile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import json
import datetime
from os.path import basename, isdir, normpath
from denite.util import expand, path2project


class Projectile(object):
def __init__(self, nvim):
self._nvim = nvim
self._data_dir = self._nvim.eval('g:projectile#data_dir')

def auto_add_project(self):
data_file = expand(self._data_dir + '/projects.json')
boofer = self._nvim.current.buffer.name
pj_root = path2project(self._nvim, boofer, '.git,.hg,.svn')

is_pj = (isdir("{}/.git".format(pj_root))
or isdir("{}/.hg".format(pj_root))
or isdir("{}/.svn".format(pj_root)))
if is_pj:
is_new_pj = True
with open(data_file, 'r') as g:
try:
json_info = json.load(g)
except json.JSONDecodeError:
json_info = []

projects = json_info[:]
for i in range(len(projects)):
if projects[i]['root'] == pj_root:
is_new_pj = False
break

if is_new_pj:
pj_name = basename(normpath(pj_root))
new_data = {
'name': pj_name,
'root': pj_root,
'timestamp': str(datetime.datetime.now().isoformat()),
'description': '',
'vcs': is_pj
}

projects.append(new_data)
with open(data_file, 'w') as f:
json.dump(projects, f, indent=2)