Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code editor: jumplist recent files #185

Open
icewolfz opened this issue Oct 15, 2022 · 0 comments
Open

Code editor: jumplist recent files #185

icewolfz opened this issue Oct 15, 2022 · 0 comments
Labels
Code editor Code editor related issues enhancement A new feature or way to improve a current feature to make it better or offer more uses wishlist Wanted but not required

Comments

@icewolfz
Copy link
Owner

Add support for jump list recent file list for code editor, this probably requires a single instant and some way to only have 1 version of editor only open which right now is not supported as it allows as many editors open as single instant is client only side, no real way to handle that with out some type of custom IPC i be leave

Another issue is the recent list sends the file name as a command line argument, granted not sure how electron builder sets file associates so this may be possible to prepend the -eo flag to open in code editor or -e for current active client

On windows this requires registering the program for the supported file types, electron builder has a file associate option, should just have to list all the file types and in theory it should work

File types: .c, .h, .o, .design, .map, .cfg, .txt

electron-userland/electron-builder#409

Electron builder build option:

"build": {
   "fileAssociations": [{
     "ext": "ext1",
     "name": "ext1 File",
     "role": "Editor"
   },
   {
     "ext": "ext2",
     "name": "ext2File",
     "role": "Editor"
   }
   ],
   "nsis": {
     //othersettings,
     "perMachine": true
   }
}
@icewolfz icewolfz added enhancement A new feature or way to improve a current feature to make it better or offer more uses wishlist Wanted but not required Code editor Code editor related issues labels Oct 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Code editor Code editor related issues enhancement A new feature or way to improve a current feature to make it better or offer more uses wishlist Wanted but not required
Projects
None yet
Development

No branches or pull requests

1 participant