Infinidat Plugin
Infinidat plug-in for Sublime Text 3
Details
Installs
- Total 275
 - Win 195
 - Mac 57
 - Linux 23
 
| Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 
Readme
- Source
 - raw.githubusercontent.com
 
FEATURES
========
Select All Lines
----------------
    Extend the cursor to all lines of the file. By default, sublime has commands to extend the cursor one line up
    or one line down. Using this feature, the user can select multiple lines at once: either all the way down from the
    current position to the end of the file, or all the way up from the current cursor position to the beginning of the
    file, or all the lines in the file regardless of current cursor position.
    To use, define keyboard shortcuts, for exmaple:
        { "keys": ["alt+shift+pageup"], "command": "select_all_lines", "args": {"direction": "backward"} },
        { "keys": ["alt+shift+pagedown"], "command": "select_all_lines", "args": {"direction": "forward"} },
        { "keys": ["alt+shift+f3"], "command": "select_all_lines", "args": {"direction": "all"} }
Open Everywhere
---------------
    Use Sublime's quick panel to open files anywhere on the computer, not just files in the current project.
    Activate using Command Palette (Infinidat: Open Anything) or define keyboard shortcut, for example:
        { "keys": ["ctrl+o"], "command": "open_everywhere" }
Grep
----
    Find all lines containing the current selection and remove all other lines (grep the current selection)
    or exclude them (i.e. grep -v).
    Also supports grepping in log files, where some log entries expand over multiple lines, so the grep extends
    to all entry lines.
    Activate using the Command Palette:
        Infinidat: Grep
        Infinidat: Grep Exclude
        Infinidat: Log Grep
        Infinidat: Log Grep Exclude
        Infinidat: Grep Traceback
        Infinidat: Expand Log Message
    Or define keyboard shortcut, for example:
        { "keys": ["ctrl+shift+g"], "command": "grep" }
INFINIDAT-SPECIFIC FEATURES
===========================
Diagnostics
-----------
    This feature allows easy navigation in log qfiles and sets of log files (with log rotation)
    written in a specific format.
    Activate using the Command Palette:
        Infinidat: Goto Log
        Infinidat: Goto Date
        Infinidat: Goto Timestamp
        Infinidat: Goto Trace
        Infinidat: Goto Other Node
        Infinidat: Open Next File
        Infinidat: Open Previous File
GitLab clone
---------------
    Quickly clone a git repository from a GitLab server. When activated, the plugin fetches the
    repository list and shows the list using Sublime's quick panel.
    Fetching the list and cloning are done by infi.projector - the path to the projector executable must
    be defined in the plugin settings.
    Activate using the Command Palette (Infinidat: GitLab Clone) or define keyboard shortcut, for example:
        { "keys": ["ctrl+shift+c"], "command": "gitlab_clone" }