All Projects → vhyza → exec-in-window

vhyza / exec-in-window

Licence: other
exec-in-window is replacement for exec command used in Sublime Text 2 build system

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to exec-in-window

CodeChampion
Plays epic sound clips when you write epic code on sublime Text!
Stars: ✭ 30 (+100%)
Mutual labels:  sublime-text-plugin
Plist-Binary sublime
De/Encode .plist files between XML and binary format
Stars: ✭ 18 (+20%)
Mutual labels:  sublime-text-plugin
hackerlime
A Sublime text 2 plugin to submit code to hackerrank contests direcltly by CTRL+SHIFT+r
Stars: ✭ 21 (+40%)
Mutual labels:  sublime-text-plugin
Editorconfig Sublime
Sublime Text plugin for EditorConfig - Helps developers maintain consistent coding styles between different editors
Stars: ✭ 1,749 (+11560%)
Mutual labels:  sublime-text-plugin
sublime rainbow csv
🌈Rainbow CSV - Sublime Text Package: Highlight columns in CSV and TSV files and run queeries in SQL-like language
Stars: ✭ 97 (+546.67%)
Mutual labels:  sublime-text-plugin
PyTest
pytest runner and view annotator for sublime text 3
Stars: ✭ 20 (+33.33%)
Mutual labels:  sublime-text-plugin
sublime-stylefmt
Sublime Text plugin for Stylefmt
Stars: ✭ 49 (+226.67%)
Mutual labels:  sublime-text-plugin
UnicodeMath
Plugin for Sublime for inserting unicode math symbols and emoji
Stars: ✭ 106 (+606.67%)
Mutual labels:  sublime-text-plugin
DXMate
Sublime Text 3 plugin to provide integration with the Salesforce DX CLI
Stars: ✭ 14 (-6.67%)
Mutual labels:  sublime-text-plugin
SaneSnippets
Sublime Text snippets optimized for humans, not robots
Stars: ✭ 59 (+293.33%)
Mutual labels:  sublime-text-plugin
Ghosttext
👻 Use your text editor to write in your browser. Everything you type in the editor will be instantly updated in the browser (and vice versa).
Stars: ✭ 2,614 (+17326.67%)
Mutual labels:  sublime-text-plugin
simple-ftp-deploy
This package for Sublime Text 3 give you possibility to auto upload file to FTP server when you save local file.
Stars: ✭ 16 (+6.67%)
Mutual labels:  sublime-text-plugin
zephir-sublime
Sublime Text syntax highlighting for for Zephir
Stars: ✭ 41 (+173.33%)
Mutual labels:  sublime-text-plugin
SublimeXssEncode
Converts characters from one encoding to another using a transformation.
Stars: ✭ 37 (+146.67%)
Mutual labels:  sublime-text-plugin
Sublime-Pretty-Shell
🐚 Shell Script Formatter / Syntax Checker (Powered by shfmt)
Stars: ✭ 28 (+86.67%)
Mutual labels:  sublime-text-plugin
CSSFontFamily
CSSFontFamily is a Sublime Text plugin with a collection of font stacks autocomplete.
Stars: ✭ 15 (+0%)
Mutual labels:  sublime-text-plugin
SublimeDiscordRP
📄 Discord rich presence for Sublime Text
Stars: ✭ 123 (+720%)
Mutual labels:  sublime-text-plugin
sublime-live-server
🌍️ Launch a Development Server directly from Sublime Text
Stars: ✭ 49 (+226.67%)
Mutual labels:  sublime-text-plugin
hover-preview
Sublime Text 3 Plugin for previewing images.
Stars: ✭ 42 (+180%)
Mutual labels:  sublime-text-plugin
sublime-phoenix-beagle
Sublime Text plugin to make development with Phoenix Framework better!
Stars: ✭ 22 (+46.67%)
Mutual labels:  sublime-text-plugin

exec-in-window

exec-in-window is modified exec command used in Sublime Text 2 build system

SublimeText screenshot

features

  • display build results in new Sublime Text window instead of output panel
  • execute unsaved files - based on selected syntax

installation

Using Sublime Package Control

If you are using Sublime Package Control, you can install plugin via the Package Control: Install Package menu item. Plugin is listed as Exec In Window

Using Git

go to Sublime Text Packages directory

  • ~/Library/Application\ Support/Sublime\ Text\ 2/Packages on OS X
  • %APPDATA%/Sublime Text 2/Packages/ on Windows
  • ~/.config/sublime-text-2/Packages/ on Linux

clone repository

git clone https://github.com/vhyza/exec-in-window.git

usage

modify build settings for desired language

for example for Ruby you need to modify file Packages/Ruby/Ruby.sublime-build and add line "target": "exec_in_window"

whole file should look like this

{
  "cmd": ["/Users/vhyza/.rvm/bin/rvm-auto-ruby", "$file"],
  "target": "exec_in_window",
  "selector": "source.ruby"
}

to disable output panel add "show_panel_on_build": false into your preferences (Command+,)

press Command+B to build file (unnamed files should have set proper syntax)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].