Home > Development Tools > sublime > 2 steps to open files with Sublime in Git Bash

2 steps to open files with Sublime in Git Bash

藏色散人
Release: 2021-04-30 18:53:45
forward
1926 people have browsed it

下面由sublime教程栏目给大家介绍怎么2步实现在Git Bash中用Sublime打开文件,希望对需要的朋友有所帮助!

2 steps to open files with Sublime in Git Bash

每次都要用鼠标点来点去才能用sublime打开文件!太不科学!今天来配置一下在git bash中用sublime打开文件

方法

  • 新建一个文件命名为你想要的命令,比如 subl(注意不能有后缀名),内容:
#!/bin/sh"C:\Program Files\Sublime Text 3\sublime_text.exe" $1 &
Copy after login
    • 第一行是说这是个 shell 脚本
    • 第二行的字符串是sublime 的安装目录注意这里要输入你自己的目录
    • 第二行的$1 是取的命令之后输入的参数
    • 第二行的&是此命令在后台打开,这样sublime打开之后,就不会阻塞你的git bash
  • 保存到 C:\Program Files (x86)\Git\mingW32\bin 目录下(你的git目录可能与我的不一样,注意改成你自己的)
  • 大功告成~

使用方法

subl xxx
Copy after login

如果xxx已存在,则打开已存在的文件,如果不存在则打开新文件命名为xxx

扩展

不光是sublime,感觉用这种方法我们就可以设置更多了,比如用chrome打开.html文件等等。
发现更大的世界~yeah!

The above is the detailed content of 2 steps to open files with Sublime in Git Bash. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template