GithubHelp home page GithubHelp logo

claudiobm / sublime-text-shell-command Goto Github PK

View Code? Open in Web Editor NEW

This project forked from markbirbeck/sublime-text-shell-command

0.0 2.0 0.0 655 KB

The ShellCommand plugin allows arbitrary shell commands to be run and their output to be sent to buffers or panels. The output can have a syntax associated with it, which makes it possible to build 'modes' that provide complex interactions.

License: MIT License

JavaScript 10.67% Python 89.33%

sublime-text-shell-command's Introduction

Introduction

The ShellCommand plugin allows arbitrary shell commands to be run and their output to be sent to buffers or panels.

It can:

  • run pretty much any shell command, either typed into a prompt or configured in key bindings and commands;
  • the output from a command is directable to either a new buffer or a panel;
  • subsequent commands can cause other panels to re-run their commands, i.e., to 'refresh' themselves;
  • the output of a shell command can be controlled by any syntax definition.

These features can be combined together to create apps or modes. To see a full example of how this can be done, see the Git Mode plugin, which provides an interface to Git, entirely implemented using key bindings, syntax definitions and calls to ShellCommand.

Motivation

Whilst working on a number of Emacs-style extensions for Sublime it became clear that much of the functionality of extensions such as dired and magit required little more than the ability to move from one buffer to another, invoking commands based on context on the way.

For example, dired shows a list of files and directories, and then allows users to interact with those files by selecting items in the buffer and pressing some key combinations. This way files and directories can be opened, renamed, deleted, zipped up, compared, and so on.

Similarly, the incredibly useful magit firstly shows the status of a Git repo and then allows files to be staged, unstaged, committed and diffed, whilst branches can be switched between, rebased, merged, pushed, pulled and more.

So this extension is the factoring out of the core functionality on top of which tools like dired and magit can be built. A Sublime-style version of magit should be available shortly.

Installation

The package is available on Package Control.

Key bindings

The built-in bindings are based on similar functionality for Emacs (see Execute External Command):

  • alt+! will show a prompt into which a shell command can be typed;
  • alt+| will also show a prompt, but will use any selections or text under the cursor (or the current file if nothing is selected) as standard input to the shell command (i.e., stdin);
  • g in a view that is showing the output of a shell command will cause the command to be run again.

In addition to this it's possible to customise the behaviour for many different scenarios.

Shell Configuration Files

For detailed information about using your shell configuration options see Using a Shell Configuration File.

Commands

There is one command provided in the Command Pallette, which is ShellCommand. This provides a prompt into which a shell command can be entered. Any selections in the active view will be fed to the command as standard input. If there are no selections then the entire buffer will be passed through.

Configuration Settings

NOTE: Some variable names have hyphens and some underscores. This is because I'm still uncertain about how much to align with the Emacs functionality that this module is based on.

comint-scroll-show-maximum-output

If comint-scroll-show-maximum-output is True, then scrolling due to arrival of output tries to place the last line of text at the bottom line of the window, so as to show as much useful text as possible. (This mimics the scrolling behavior of many terminals.) The default is False.

shell-file-name

shell-file-name provides the name of the shell to use when executing commands. If this value is not set then either the SHELL or COMSPEC environment variable is used, depending on whether Sublime Text is running on a Posix or Windows system. If none of these is set then the behaviour is defined by subprocess.Popen().

show_success_but_no_output_message

Indicates whether to show a message when the shell command returns no output, or the output is just whitespace. The default value is False, i.e., no window is created if the command doesn't return anything.

## success_but_no_output_message

This is the message to show in the window or panel if the show_success_but_no_output_message value is set to True. The default value copies the equivalent from Emacs, i.e., "Shell command succeeded with no output".

Examples

Note that the following key bindings are for illustrative purposes only.

Prompt for a command on ctrl+enter

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command"
  }
]

This is the most basic use of the plugin, and will result in a prompt being provided to the user, into which any string can be typed. On pressing [ENTER] the string will be processed as a shell command and the output will be rendered in a new view. The buffer in the view is read only.

Change the prompt caption and the output window title

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "prompt": "Enter a command",
      "title": "My Command"
    }
  }
]

Using these arguments the caption next to the prompt can be changed, as well as the title of the output view.

Capturing output in a panel

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "prompt": "Enter a command",
      "title": "My Command",
      "panel": true
    }
  }
]

Often the output of a command is only required for a short amount of time, in which case a panel might be more appropriate.

Run a specific command

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "command": "git status"
    }
  }
]

To run a particular shell command use the command parameter.

Prompt the user for parameters

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "command": "git checkout -b feature/${branch::Feature Branch} develop"
    }
  }
]

The branch variable has a prompt (the string 'Feature Branch'), so the user is asked to provide its value.

If a default value is provided (the second value after the variable name) then this will be placed into the prompt:

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "command": "git checkout -b feature/${branch:new feature:Feature Branch} develop"
    }
  }
]

Use cursor selection for input

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "command": "ls -al",
      "region": "arg"
    }
  }
]

If the region option is set to 'arg' then any active selections are appended to the command as arguments. If there are no active selections then the word under the cursor is used. In this example if there were no selections, and no word under the cursor then the ls -al command would be run as is, most likely giving the contents of the project directory. But if a directory name were under the cursor, or was selected, then its contents would be listed.

[
  {
    "caption": "Word Count",
    "command": "shell_command",
    "args": {
      "command": "wc -w",
      "region": "stdin"
    }
  }
]

If the region option is set to 'stdin' then any active selections are piped to the command as standard input (stdin). If there are no active selections then the entire buffer is used. In this example if there were no selections, and no word under the cursor then the wc -w command would count the number of words in the current buffer.

Providing a common command prefix

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "command_prefix": "git",
      "prompt": "Git Command"
    }
  }
]

Sometimes it's useful to provide a command prompt that relates to a specific shell command, and the user would then only need to provide the parameters. This example creates a prompt labelled 'Git Command', into which the user need only type the Git command itself, and any parameters. For example, to run git status, only status would need to be entered into the prompt.

Feeding a string of text to a command

[
  {
    "caption": "Word Count",
    "command": "shell_command",
    "args": {
      "stdin": "A contrived example. The output should be 8",
      "command": "wc -w"
    }
  }
]

To pass a string of text to a command use the stdin argument.

Applying a syntax definition to the output

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "command": "git diff",
      "syntax": "Diff",
      "title": "Diff"
    },
  }
]

This will run git diff against whatever file is selected, and then use the Diff syntax file (Packages/Diff/Diff.tmLanguage) to format the output.

Restricting key bindings to a shell command view

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "command": "git diff",
      "syntax": "Diff",
      "title": "Diff"
    },
    "context": [{ "key": "setting.ShellCommand" }]
  }
]

This is the same command as before -- running git diff on the file that the cursor is pointing at -- but this time the command will only work if the view is a ShellCommand window.

Refreshing the current view

If a shell command is executed whilst in the context of the output of another shell command and the action would affect the first view, then a refresh can be sent after the command has run. This uses the refresh argument. For example, say a view contains a listing of the working directory created with the following shell command:

[
  {
    "keys": ["ctrl+enter", "1"],
    "command": "shell_command",
    "args": {
      "command": "ls -al"
    }
  }
]

If we then have two further shell commands -- one that creates a new file, and one that deletes the file whose name is under the cursor -- we would want to ensure that the ls view updates after either of these commands is run. The settings for the two add and delete commands might look like this:

[
  {
    "keys": ["ctrl+enter", "2"],
    "command": "shell_command",
    "args": {
      "command": "cp README.md tmp",
      "refresh": true
    }
  },
  {
    "keys": ["ctrl+enter", "3"],
    "command": "shell_command",
    "args": {
      "command": "rm",
      "arg_required": true,
      "region": "arg",
      "refresh": true
    }
  },
]

Whether to wait for the command to complete

By default long-running commands will update the buffer as and when data is available. For some short commands this can look a little jerky and it might be best to wait for the command to complete before updating the buffer. This can be achieved with the 'wait for completion' flag:

[
  {
    "keys": ["ctrl+enter"],
    "command": "shell_command",
    "args": {
      "wait_for_completion": true
    }
  }
]

Changelog

2015-03-11 (v0.15.1)

Fixed an additional scenario relating to issue #47, where generated views could have a CWD of None. Fixes #47.

2015-03-11 (v0.15.0)

Commands run from generated views no longer always have CWD of None. Fixes #47.

root_dir is now working again. (@Stentor) Fixes #45.

2015-02-13 (v0.14.0)

Added option to allow the shell used to be overridden. Closes issue #32.

2015-02-13 (v0.13.1)

Added option to allow the end of a view to always be visible. Closes issue #39.

2015-02-12 (v0.13.0)

The module has been renamed to ShellCommand in the package manager so this release simply applies the name change to documents, prompts, and file paths.

2015-02-12 (v0.12.2)

  • Add blank line before list in README. (@kleinfreund) Fixes issue #41.
  • Provide method for running shell commands directly. (@markbirbeck) Fixes issue #42.
  • Add reference to Git Mode as an example of using ShellCommand to create modes. (@markbirbeck)

2015-01-01 (v0.12.1)

  • Add substitution variables that mirror those used in the ST build system. See Build System Variables for the full list and description. Fixes issue #35.

2015-01-01 (v0.12.0)

  • Commands can now get parameters from users. Thanks to @aflc for providing the code for this functionality. Fixes issue #36.

2014-06-26 (v0.11.1)

  • The working directory is set to be the directory of the current file, but if the 'root' (deduced from the current file) is required, the option root_dir can be set to True. (@markbirbeck) Fixes issue #25.

2014-06-26 (v0.11.0)

  • Commands were failing on Windows due to an unnecessary check that stdout was ready. (@markbirbeck) Fixes issue #13. Thanks to @bergtholdt who drew attention to the problem and proposed a slightly different solution.
  • Working directory selection is now much smarter, based on using the current file's path to find out which folder or project the file belongs to. (@bergtholdt) Fixes issue #17.
  • The working directory is set to be the 'root' deduced from the current file, but if the directory of the current file is required, the option root_dir can be set to False. (@markbirbeck) Fixes issue #24.
  • Menu entries that were supposed to provide access to settings and key bindings were opening the wrong files. (@markbirbeck) Fixes issue #22.
  • CR/LF sequences are now mapped to LF which improves display on Windows. (@markbirbeck) Fixes issue #21.
  • A link to a wiki page from the README was incorrect. (@mrjoelkemp) Fixes issue #19 and #20. Thanks also to @reqshark who spotted the same problem and also provided a solution.

2014-03-20 (v0.10.0)

  • Passing a buffer with UTF-8 characters in as the stdin for a command caused the command to fail. (@markbirbeck) Fixes issue #16.

2014-03-15 (v0.9.0)

  • Commands were failing if run in a window with no open folders or files. (@mrvoss) Fixes issue #14.

2014-03-14 (v0.8.0)

  • Any text selected in the current buffer, or the entire buffer, can now be fed to a command as standard input, rather than as an argument. (@pcantrell) Fixes issue #5.

2014-03-11 (v0.7.0)

  • A shell configuration script can now be executed before commands. The script is either set in $ENV (as per bash conventions) or using the shell_configuration_file configuration setting. (@mikeerickson) Fixes issue #8.

2014-03-10 (v0.6.0)

  • The working directory is no longer derived primarily from the currently selected file. Instead any directory that has been saved in the view settings, or the project directory or the first open folder, is used. (@mikeerickson) Fixes issue #6.

2014-03-07 (v0.5.0)

  • If there is no output from a command then no panel or window is created. This used to work, until async commands were implemented, but now it really does work. (@aldanor) Fixes issue #11.

2013-11-26 (v0.4.0)

  • Long-running commands will now update the buffer as and when data is available. For example, Grunt could be made to watch a project and update the buffer by running the command grunt --no-color. However, note that there is currently no way to terminate the process (see issue #10). Fixes issue #4.

  • To change the default behaviour for long running commands, use the 'wait for completion' flag.

2013-10-07 (v0.3.0)

  • Commands now really are run asynchronously. (@SirLenz0rlot) Fixes issue #2.
  • Add shell_command_on_region to align with Emacs version.

2013-10-07 (v0.2.0)

  • Some crucial text commands were not included (@bizoo). Fixes issue #1.
  • The region under the cursor was not being used as a parameter.

2013-10-04 (v0.1.0)

  • Initial release.

sublime-text-shell-command's People

Contributors

bergtholdt avatar markbirbeck avatar mrjoelkemp avatar roy-ht avatar stentor avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.