eye.helpers.file_search_plugins.grep module

class eye.helpers.file_search_plugins.grep.AckGrep(**kwargs)[source]

Bases: GrepLike

cmd_base = ['ack-grep', '--nofilter']
id = 'ack'

Class attribute, identifier of the plugin

The identifier should be unique across plugin classes since this identifier is used for get_plugin.

class eye.helpers.file_search_plugins.grep.AgGrep(**kwargs)[source]

Bases: GrepLike

cmd_base = ['ag']
id = 'ag'

Class attribute, identifier of the plugin

The identifier should be unique across plugin classes since this identifier is used for get_plugin.

class eye.helpers.file_search_plugins.grep.BasicGrep(**kwargs)[source]

Bases: GrepLike

cmd_base = ['grep', '-n', '-R']
id = 'rgrep'

Class attribute, identifier of the plugin

The identifier should be unique across plugin classes since this identifier is used for get_plugin.