Tags : Browse Projects

Select a tag to browse associated projects and drill deeper into the tag cloud.

Debian Vim packages

Compare

  No analysis available

Vim related Debian packages and tools

0 lines of code

27 current contributors

0 since last commit

0 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: apache_2, isc, Vim_License

YADR

Compare

  Analyzed 3 days ago

YADR is an opinionated dotfile repo that will make your heart sing * The best bits of all the top dotfile repos, vim and zsh plugins curated in one place, into a simple and cohesive way of working. * More than 90 vim plugins, all under one roof, working together, each plugin researched and ... [More] configured to be at its best, often with better shortcut keys. * Many zsh plugins, starting with the wonderful Prezto base, and adding a few niceties on top. * All things are vimized: irb, postgres command line, etc. [Less]

4.29K lines of code

7 current contributors

over 1 year since last commit

0 users on Open Hub

Very Low Activity
0.0
 
I Use This

vim-plug

Compare

  Analyzed 1 day ago

:hibiscus: Minimalist Vim Plugin Manager

2.61K lines of code

8 current contributors

4 days since last commit

0 users on Open Hub

Low Activity
0.0
 
I Use This
Tags plugin vim

kindaVim

Compare

  Analyzed about 14 hours ago

Brings Vim to any macOS input fields. and also, well, to non input fields. so basically everywhere.

46K lines of code

0 current contributors

26 days since last commit

0 users on Open Hub

Very Low Activity
0.0
 
I Use This
Licenses: No declared licenses

vim for netbeans

Compare

  Analyzed 1 day ago

Vi/Vim Plugin for Netbeans 5.5

9.93K lines of code

0 current contributors

about 12 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This

vimicxx

Compare

  Analyzed 1 day ago

Intellisense for C++ in Vim on Linux/Unix.

44.8K lines of code

0 current contributors

about 15 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This

vim-cocoa

Compare

  Analyzed 1 day ago

vim-cocoa is a Mac OS X native vim GUI implementation in Cocoa.

542K lines of code

0 current contributors

over 7 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This
Tags cocoa mac vim

pysmell

Compare

  Analyzed 4 days ago

PySmell is a python IDE completion helper. It tries to statically analyze Python source code, without executing it, and generates information about a project's structure that IDE tools can use. There is currently support for Vim, Emacs and TextMate. Feel free to contribute your own favourite ... [More] editor bindings, or to improve the existing ones. Download and InstallationPySmell is available at PyPI. The best way to install PySmell is by downloading the source distribution and doing python setup.py install. While easy_install pysmell also works, I haven't yet found a way of distributing the editor scripts with it (suggestions welcome). You should be able to import pysmell inside your Python interpreter and invoke pysmell at the command line. You can track the development of PySmell by visiting GitHub. You can click 'Download' to get it as a zip/tar if you don't have git installed. python setup.py develop will setup your enviroment. UsageBefore you invoke PySmell, you need to generate a PYSMELLTAGS file: cd /root/of/project pysmell . If you want to specifically include or exclude some files or directories (eg. tests), you can use: pysmell [Package Package File File ...] [-x Excluded Excluded ...] Check for more options by invoking pysmell without any arguments Using external librariesPySmell can handle completions of external libraries, like the Standard Library and Django. To use external libraries, you have to first analyze the libraries you want, eg. for stdlib: pysmell /path/to/stdlib -x site-packages test -o ~/PYSMELLTAGS.stdlib This will create PYSMELLTAGS.stdlib in your HOME. Copy that in the root of your project, and repeat for other libraries by changing the extension. Note that you still have to have a root PYSMELLTAGS file with no extension at the very root of your project. Partial tagsSometimes it's useful to not pollute global namespaces with tags of sub-projects. For example, assume that there is a Tests package, which has hundreds of tests, together with a few testing-related modules. You only want to see these completions when working on test file. To accomplish that, you can put PYSMELLTAGS. files inside subdirectories, and they will be used only when you're working on a file somewhere in that directory or its children. pysmell Tests/FunctionalTest.py Tests/UndoTestCase.py -o Tests/PYSMELLTAGS.Tests The information in FunctionalTest and UndoTestCase will only be accessible when editing a file inside the Tests package. VimTo use PySmell omnicompletion from inside Vim, you have to have: Python support in vim (:echo has('python')) The pysmell package in the PYTHONPATH that Vim uses: python import pysmell should work. Drop pysmell.vim in ~/.vim/plugins :setlocal omnifunc=pysmell#Complete Note: If you want to always use pysmell for python, do: autocmd FileType python setlocal omnifunc=pysmell#Complete OPTIONAL Select a matcher of your liking - look at pysmell.vim for options. Eg: :let g:pysmell_matcher='camel-case' You can then use XO to invoke Vim's omnicompletion. You can generate debugging information by doing: :let g:pysmell_debug=1 :e PYSMELL_DEBUG Debug information will be appended in that buffer, copy and paste it into the report. TextMateDouble-click PySmell.tmbundle :) Complete with alt-esc - look into the bundle for more commands. You can find the bundle in the source distribution - it's not installed with the egg, because it's too much trouble. Set TM_PYTHON in your Shell Variables to point to the Python where you installed PySmell. EmacsPut pysmell.el into your load-path, and inside your .emacs file put: (require 'pysmell) (add-hook 'python-mode-hook (lambda () (pysmell-mode 1))) Complete with M-/, create tags with M-x pysmell-make-tags Pymacs is required as well. Reporting issuesPySmell is hosted at Google Code. Look in the issues list first. Star issues that you feel strongly about, or create your own. If you can create a unit test that exposes that behaviour, it'd be great! [Less]

4.05K lines of code

0 current contributors

almost 15 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This

porter-stem.vim

Compare

  Analyzed 3 days ago

Implementation of Porter stemming algorithm in vim script. See https://www.ohloh.net/p/stem-search-vim for a script that makes use of this.

205 lines of code

0 current contributors

over 7 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This

stem-search.vim

Compare

  Analyzed 2 days ago

StmSrch is a reverse-stem searching script. It implements the Porter stemming algorithm, by Martin Porter. It also handles irregular verbs and noun pluralizations. This script can be useful for searching or scanning through corpus files. Each word input to the :StmSrch command will be stemmed ... [More] and then formulated in such a way as to match possible conjugations or pluralizations. Without any word given for input, it will attempt to stem the current word under the cursor. The matching is done using word boundaries so not just any substring will match. For example: - :StmSrch searcher will match any of: - search, searching, searches, searchers, searched, ... and a string of words will work as well, matching in order: - :StmSrch thieves are running from bunnies will match strings of word [Less]

308 lines of code

0 current contributors

almost 14 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This