1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

CursorをTerminalから起動させたい

Posted at

Cursorってキーワード的にユニークじゃないしまだメジャーではないから
Google検索しても上手く引っかからない・・


以下MacOSのお話です


VScodeだと

$ code .

で起動できるけど、
CursorをTerminalから起動する方法がぱっと分からなくて
多分Cursorの起動プログラムがあるだろうって探したら

$ find  /Applications/Cursor.app/Contents/ -type f|xargs ls -alg|grep 'x  '
〜
-rwxr-xr-x  1 staff      32816  1  8 23:31 /Applications/Cursor.app/Contents//MacOS/Cursor
〜

だったの、フルパスで実行したらCursorが起動した。
ので、
~/.bash_profileに

~/.bash_profile
alias cursor='/Applications/Cursor.app/Contents//MacOS/Cursor'

を追加し

$ . ~/.bash_profile

で、今のターミナルに反映させて

$ cursor .

で起動させることができましたとさ、おしまい。

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?