ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Catkin Builder

by ZacharyTaylor ST3

Use catkin build in sublime text 3

Labels build system

Details

Installs

  • Total 631
  • Win 96
  • Mac 39
  • Linux 496
May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19
Windows 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 1
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0

Readme

Source
raw.​githubusercontent.​com

Catkin-Builder-Sublime

Use Catkin build in Sublime Text 3.

Screenshot

Prerequisites

Requires ROS (http://www.ros.org/) and Sublime Text 3

If you can open a terminal, cd to your ROS package directory and run “catkin build ” without issues, then this plugin should work.

Usage

Switch your build system in Sublime to Catkin by going to Tools -> Build system -> Catkin. Build your files using Ctrl+B or Ctrl+Shift+B for build options.

Can be called on any type of file that is in a Catkin Package.

If the build process generates errors, the first error encountered will be reprinted in a separate section below the other build errors. This behavior can be disabled (see the Options Section below).

Installing

Package Control (Recommended)

  1. If you don't already have it, install Package Control (https://packagecontrol.io/)
  2. Open the Command Palette by pressing ⌘+Shift+P on Mac or Ctrl+Shift+P on Windows
  3. Type in Package Control: Install Package and press Enter
  4. Type Catkin Builder and hit Enter

Manual install:

  1. Clone or download a zip of the repo.
  2. Open your Sublime Text package directory by going into Sublime and clicking on Preferences -> Browse Packages
  3. Place the files in a folder in the Sublime Text Packages folder.

Build Variants

  • Catkin: builds the package the file it is called from belongs to.
  • Catkin - build dependencies: Builds the package and all the packages it depends on.

Options

The Catkin.sublime-build script has several additional options that are set in the CatkinBuilder.sublime-settings file

  • color: Forces output to contain ANSI color information (will only display correctly if additional plugins that allow Sublime Text's build output to support ANSI color are present)
  • status-updates: On by default, provides status messages during building
  • trim_output: On by default, removes information about the workspace setup and other similar details from Catkins output
  • replace_q: On by default, an ugly workaround for an issue encountered with the output of Catkin. Some symbols appear as question marks in the output. This flag replaces all question marks including those that should appear in the text.
  • repeat_err: On by default, repeats the first error encountered at the end of the error message.

Known issues:

  • Catkin will return question marks to the script instead of some symbols. The current workaround for this is the replace_q flag that removes all question marks from the output.
  • Repeating error function is based on simple string matching and far from bulletproof.
  • Completely untested in anything that isn't Sublime Text 3 in Ubuntu 16.04, if you are run it on another OS let me know if it works or breaks
  • Coloring of output is based on very simple keyword matching