'explorer' button similar to VSCode #6880
Replies: 2 comments
-
Hi @songxian1688! I'm Dosu and I’m helping the Trilium team. TriliumNext does not have an 'explorer' button like VSCode that displays all notes or the current root with a single click. The first button in the upper left is always 'New Note', and this cannot be changed or removed through the UI—it's a fixed element in the codebase source. The left sidebar in Trilium acts as the note tree, similar to VSCode's Explorer, and is always visible for navigation. For quick navigation, you can use keyboard shortcuts like If you want more VSCode-like navigation, you might explore custom widgets or scripts, but there is no built-in toggle or button for this at the moment. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
-
Trilium does not have a built-in 'explorer' button.
api.triggerCommand("toggleLeftPane");
const hasVisible = document.querySelector('#left-pane')?.classList.contains('visible');
if (hasVisible){
api.triggerCommand("scrollToActiveNote");
} You can adjust the position of the launch button and customize its icon style.
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe feature
Is there a 'explorer' button similar to VSCode that displays all my notes when I click on it. That is to say, displaying the content of the current root.
Because when I use VSCode, I have a habit of clicking the first button in the upper left corner to view all the code files. So every time I use TriliumNext, I habitually click on the first button in the upper left corner, but in reality it's' New Note '. This makes me create a new note every time, which is not what I want. So I need to delete this note every time.
Additional Information
No response
Beta Was this translation helpful? Give feedback.
All reactions