I discovered an issue when trying to get a full list of all extensions from Cursor. Here’s the output:
$ cursor --list-extensions
FaroSystemAppender constructor
adam-bender.commit-message-editor
brittanychiang.halcyon-vscode
charliermarsh.ruff
christian-kohler.path-intellisense
davidanson.vscode-markdownlint
dbaeumer.vscode-eslint
donjayamanne.githistory
eamodio.gitlens
ecmel.vscode-html-css
github.codespaces
github.remotehub
github.vscode-pull-request-github
golang.go
mhutchie.git-graph
ms-azuretools.vscode-docker
ms-kubernetes-tools.vscode-kubernetes-tools
ms-python.isort
ms-python.python
ms-python.vscode-pylance
ms-toolsai.jupyter
ms-toolsai.jupyter-renderers
ms-toolsai.vscode-jupyter-cell-tags
ms-toolsai.vscode-jupyter-slideshow
ms-vscode-remote.remote-containers
ms-vscode.azure-repos
ms-vscode.remote-repositories
nick-rudenko.back-n-forth
pkief.material-icon-theme
redhat.vscode-yaml
ritwickdey.liveserver
satvikvirmani.infinity-theme
sveggiani.vscode-field-lights
visualstudioexptteam.intellicode-api-usage-examples
visualstudioexptteam.vscodeintellicode
yummygum.city-lights-theme
yunduo.color-highlight-css-color-4
Although I have ~160 installed extensions, this output does not reflect that number. What puzzles me more is the top entry: FaroSystemAppender constructor
. It doesn’t match the expected format (<provider>.<name>
), and I don’t recognize it.
I couldn’t find it in the extensions marketplace online or within Cursor. My search also came up empty on DuckDuckGo, except for a post from another user on these forums:
I created this separate post because even though my issue seems unrelated, this is the only other reference I found to the searched string.
In case it’s of any use, and in the absence of any crash report or otherwise, here’s some very basic system information:
$ type -a cursor
cursor is /usr/local/bin/cursor
$ type -a code
code is /usr/local/bin/code
$ uname -a | awk '{$2="";print $0}'
Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:42 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_T6000 arm64
Notably, this information is relevant if only just to point out that the other post I referenced here & my own issue do not seem to share any other commonality aside from being related to Cursor.
While I’m not in a hurry to get my extensions list, I thought it might be helpful to report this.