This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
developer_tools [2018/10/31 00:53] rryan Add a section on ack-like tools. |
developer_tools [2019/06/15 07:11] ferranpujolcamins [Using IDEs] |
||
---|---|---|---|
Line 18: | Line 18: | ||
===== Using IDEs ===== | ===== Using IDEs ===== | ||
+ | * Set up [[Visual Studio Code]] | ||
* Set up [[eclipse|Eclipse]] | * Set up [[eclipse|Eclipse]] | ||
* Set up [[KDevelop]] | * Set up [[KDevelop]] | ||
Line 51: | Line 52: | ||
===== grep / ack / ag / ripgrep ===== | ===== grep / ack / ag / ripgrep ===== | ||
- | ''grep'' is nice for searching files with regexes, but it isn't designed specifically for looking through source code. There are a number of tools that make searching through source repositories much nicer (e.g. they won't go searching in the ''.git'' subfolder, or digging through binary files for your search string). | + | ''grep'' is nice for searching files with regexes, but it isn't designed specifically for looking through source code. There are a number of tools that make searching through source repositories much nicer (e.g. they won't go searching in the ''.git'' subfolder, or digging through binary files for your regex). |
* [[https://beyondgrep.com/|ack]] | * [[https://beyondgrep.com/|ack]] |