Skip to content

Commit

Permalink
Version 0.2: added command line completion and fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Giacomo Comitti authored and vim-scripts committed Oct 7, 2012
1 parent 6460cb3 commit a49e0e1
Show file tree
Hide file tree
Showing 5 changed files with 172 additions and 74 deletions.
30 changes: 23 additions & 7 deletions doc/ozzy.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
*ozzy.txt* *ozzy*

Ozzy
Open most frequently/recently used files from anywhere.
Opens almost any file from anywhere.

~
Reference Manual
v.0.1
v.0.2

==============================================================================
CONTENTS *ozzy-contents*
Expand All @@ -16,8 +16,9 @@ CONTENTS *ozzy-contents*
4. Freeze Ozzy ........................... |ozzy-freeze|
5. Inspector ............................. |ozzy-inspector|
6. Commands .............................. |ozzy-commands|
7. Settings .............................. |ozzy-settings|
8. Credits ............................... |ozzy-credits|
7. Mappings .............................. |ozzy-mappings|
8. Settings .............................. |ozzy-settings|
9. Credits ............................... |ozzy-credits|


==============================================================================
Expand Down Expand Up @@ -207,9 +208,16 @@ OzzyToggleExtension *OzzyToggleExtension*
To toggle between 'consider extension' and 'ignore extensions' mode.
See |g:ozzy_ignore_ext|.

==============================================================================
7. Mappings *ozzy-mappings*

<C-o>
This is a command line mapping used for command line completions.
See also |g:ozzy_cmdline_completion_map|.


==============================================================================
7. Settings *ozzy-settings*
8. Settings *ozzy-settings*

------------------------------------------------------------------------------
g:ozzy_mode *g:ozzy_mode*
Expand Down Expand Up @@ -276,7 +284,7 @@ updated if already exists in the database. Below all the accepted patterns:

- <path>/
all file paths that contains '<path>/'.
examples: /doc/ (every file in a folder called 'doc')
examples: vim/runtime/doc/ (every file in <anything>/vim/runtime/doc)

default: []

Expand Down Expand Up @@ -311,6 +319,14 @@ commands shortcuts with their respective 'long version':
default: 1


------------------------------------------------------------------------------
g:ozzy_cmdline_completion_map *g:ozzy_cmdline_completion_map*

This is the mapping used for command line completion.

default: '<C-o>'


------------------------------------------------------------------------------
g:ozzy_most_frequent_flag *g:ozzy_most_frequent_flag*

Expand Down Expand Up @@ -347,7 +363,7 @@ default: 'freeze'


==============================================================================
8. Credits *ozzy-credits*
9. Credits *ozzy-credits*

Developed by Giacomo Comitti

Expand Down
24 changes: 0 additions & 24 deletions doc/tags

This file was deleted.

File renamed without changes.
31 changes: 25 additions & 6 deletions ozzy-0.1/README.md → ozzy-0.2/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Ozzy.vim

**v0.1 beta**
**v0.2**


Ozzy allows you to open frequently or recently used files from anywhere. Just
give a file name and (if the file has been accessed at leat once in the past)
the most frequently used file or the most recently accessed one is picked for
you, no more entire paths to digit or folder to cd into!
Ozzy allows you to open almost any file from anywhere. Just give a file name
and (if the file has been accessed at leat once in the past) the most
frequently used file or the most recently accessed one is picked for you, no
more entire paths to digit or folder to cd into!


## Installation
Expand Down Expand Up @@ -193,6 +193,13 @@ To toggle between `consider extension` and `ignore extensions` mode.
See also the [g:ozzy_ignore_ext](#ozzy_ignore_ext) option.


## mappings

**&lt;C-o&gt;**
This is a command line mapping used for command line completions.
See also [g:ozzy_cmdline_completion_map](#ozzy_cmdline_completion_map)


## Settings

<a name="ozzy_mode" />
Expand Down Expand Up @@ -292,27 +299,38 @@ commands shortcuts with their respective 'long version':
*default:* 1


<a name="ozzy_cmdline_completion_map" />
**g:ozzy_cmdline_completion_map**

This is the mapping used for command line completion.

*default:* '&lt;C-o&gt;'


**g:ozzy_most_frequent_flag**

This option represent the flag returned by the `OzzyModeFlag()` function when the
current mode is set to `most_frequent`.

*default:* 'F'


**g:ozzy_most_recent_flag**

This option represent the flag returned by the `OzzyModeFlag()` function when the
current mode is set to `most_recent`.

*default:* 'R'


**g:ozzy_freeze_off_flag**

This option represent the flag returned by the `OzzyFreezeFlag()` function when
Ozzy is not frozen.

*default:* ''


**g:ozzy_freeze_on_flag**

This option represent the flag returned by the `OzzyFreezeFlag()` function when
Expand All @@ -323,4 +341,5 @@ Ozzy is frozen.

## Changelog

* **v0.1**: beta release
* **v0.2**: added command line completion
* **v0.1**: first stable release
Loading

0 comments on commit a49e0e1

Please sign in to comment.