Skip to content

Commit

Permalink
Vim compatible now!
Browse files Browse the repository at this point in the history
  • Loading branch information
raghur committed Sep 28, 2018
1 parent c5636f1 commit 738f988
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Freaky fast fuzzy finder (Denite matcher) for neovim
# Freaky fast fuzzy finder (Denite matcher) for vim/neovim

This is a denite.nvim matcher.

Expand Down Expand Up @@ -42,4 +42,4 @@ it in usual operation (python impl is at 300 - 600μs)

## TODOS

. vim compat
1. Ctrlp compat
3 changes: 1 addition & 2 deletions rplugin/python3/denite/filter/matcher/fruzzymatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

import fruzzy


class Filter(Base):

def __init__(self, vim):
Expand All @@ -22,7 +21,7 @@ def __init__(self, vim):
self.name = 'matcher/fruzzy'
self.description = 'fruzzy - freakishly fast fuzzy matcher'
self.useNative = False
un = self.vim.api.get_var("fruzzy#usenative")
un = self.vim.vars["fruzzy#usenative"]
if un > 0:
try:
import fruzzy_mod
Expand Down

0 comments on commit 738f988

Please sign in to comment.