Browse
C++ Completions for Sublime text.
Interactively debugging C in Sublime Text 3. I had a bit of an journey yesterday getting gdb, (an interactive debugger for gcc) compiling and working in Sublime Text 3 (via the SublimeGDB package), so I thought I should document the issues I ran into & what finally worked, for others and perhaps my future self. Sublime Text is a closed source cross-platform source code editor infused with a Python API. It was released in 2008 and was developed by Jon Skinner and Will Bond. It has a slick user interface along with incredible performance. Features: Easy and swift navigation to words, lines, and symbols.
Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 3 | 26 | 19 | 25 | 16 | 27 | 22 | 40 | 32 | 18 | 20 | 29 | 27 | 32 | 22 | 18 | 18 | 15 | 10 | 28 | 17 | 21 | 16 | 16 | 13 | 13 | 24 | 18 | 23 | 25 | 20 | 31 | 19 | 16 | 18 | 18 | 22 | 19 | 18 | 17 | 20 | 31 | 16 | 21 | 27 | 32 |
Mac | 0 | 1 | 0 | 0 | 1 | 2 | 2 | 0 | 1 | 1 | 1 | 4 | 2 | 0 | 4 | 3 | 2 | 1 | 2 | 3 | 3 | 0 | 2 | 3 | 2 | 3 | 0 | 0 | 0 | 1 | 4 | 1 | 1 | 0 | 1 | 4 | 3 | 0 | 1 | 1 | 2 | 3 | 2 | 1 | 2 | 2 |
Linux | 1 | 6 | 4 | 7 | 8 | 13 | 7 | 7 | 11 | 7 | 7 | 8 | 6 | 7 | 5 | 8 | 7 | 4 | 9 | 4 | 7 | 5 | 3 | 3 | 7 | 3 | 11 | 7 | 5 | 7 | 2 | 5 | 6 | 3 | 12 | 8 | 6 | 3 | 7 | 7 | 2 | 7 | 5 | 8 | 5 | 3 |
This Sublime Text (2 or 3) package gives method completion suggestions for C++.
Just type the words and the completion suggestions should show up. Press ENTER
or TAB
for completion.
Type i-header name
then Press ENTER
or TAB
for completion. e.g.
i-vector to get:
Note: For best result, you can disable Qt Completions for C++
(if installed) so that only the normal C++ methods would show up in the completion lists.
All contributions are welcome. Just fork it on Github and create a pull request.
© 2015 Taiwo Kareem | taiwo.kareem36@gmail.com.
Read license.txt
It is officially announced that Python3 2.x will be suspended for support. Here’s how to install Python3 for Mac. If you already have Python3 in your system, start reading part 2.
As you’ve probably know, Python is generally installed in Mac. If you want to know what version does your Mac have, here’s how you can find out:
You can download 3.x version via the following link to Python officail website https://www.python.org/downloads/mac-osx/. Open pkg file to start the installation.
If you open Python 3.x on Sublime after the installtion, you will still see that the program runs 2.7 instead of the new version you just downloaded. If you want to start 3.x version, you have to register Python 3 on your new Build System.
1) Find out where Python3 was installed on your terminal via using the following command:
Memorize or write down the location becuase you will need to input the loation in Sublime.
2) Click Tools > Build System > New Build System
3) With the new tab, input “untitled.sublime-build” and save
Input the location you found out on terminal in 'cmd'
and save with cmd+s. I recommend to name the file with something meaningful. I used python3.sublime-build
as the file name.
FYI, the location of file on *.sublime-build
is Users/{USER_NAME}/Library/Application Support/Sublime Text 3/Packages/User
4) If the file is properly saved, you will see the saved file on your Build System menu.
Write short Python code on Sublime for the test and save iwth .py
Click Tools > Build System > pytho3 and save with cmd+b, you will see the result as below:
You don’t need to select .py afterwards.