Go Sublime Text

broken image


  1. Sublime Text Go To Matching Brace
  2. Sublime Text Go To File

Sublime Text is a cross-platform and open source code editor. It supports many programming languages. And each programming language has its own features and extensions. Sublime Text is a text editor for code, HTML, and prose. Some package and how to configure effectively for Go development. Prerequisites go gopls. Tagged with go, sublimetext, ide, editor.

If you have been trying to figure out how to open the Sublime Text editor from your Git bash, then you're in luck. This article will guide you through the process with little or no stress.

It took me a while to figure out how it's done, but now I can share that knowledge with you all in this write up. By the end you will be able to launch Sublime Text from bash.

Prerequisites:

  • Make sure you have Sublime text editor set up
  • Make sure you have Git installed

Getting started

Sublime text is a source code editor that helps software developers code and edit text or markup.

It has amazing features such as syntax highlighting, indentation, plugins and packages. All these features help make it easier and more comfortable to work with and contribute to a wide variety of programming language code bases.

Once you've downloaded and installed Sublime, it will be located within the program files as shown below:

What we want to do is create an alias for the sublime_text.exe found within the Sublime Text 3 folder. Then when we type the alias into Git bash it auto launches the text editor.

How to Configure Git Bash with Sublime Alias

Sublime
Text

To begin configuring Git bash, we first need to open the bash terminal. Then we can proceed to explore various Linux commands in order to complete the configuration process .

First, we need to create a .bashrc file using the touch command. It's important that the file be created within the C:Usersusername directory – otherwise you will get a permission denied error.

I have created the bash file within the specified directory, so mine looks like C:Userslarry.bashrc.

Next we need to edit the .bashrc file to include the alias we'll need to launch Sublime text:

When we click on enter we will see an interface that looks somewhat like what we have below. Then you need to press ito enter the insert mode.

Now you have access and can type into the prompt. So we can add our alias there now, like this:

Once we've included that, we can press escto exit insert mode and then :wq to save and exit.

Once we are done with that we can head back to our bash to check if our configuration worked by doing subl as shown below:

Yes, it works! And you can see Sublime Text launch itself.

I also figured out that if you have a working directory you can force Sublime to open that directory. I will navigate into a code base now and show the difference in the next screenshot:

Sublime Text Go To Matching Brace

From the screenshot above, Sublime doesn't just launch a blank workspace – it launches with all project folders associated with that project. That's because we added a wildcard to the command.

Sublime Text Go To File

I hope with this hack you will be able to setup an alias for Sublime Text. I really appreciate the answers on this stack overflow thread.It helped me form the knowledge I was able to share in this article .





broken image