typora-issues icon indicating copy to clipboard operation
typora-issues copied to clipboard

conf.user.json is ignored: no custom key bindings, no custom fonts

Open felixkasza opened this issue 6 months ago • 0 comments

Typora 1.9.5 on Win11

I wanted a custom key binding. Regrettably, not even the example in the docs works. Below is my current c:\users\fk\appdata\roaming\typora\conf\conf.user.json. You will note that I replaced the proportional fonts all with "Brill"; this also has no effect. As far as I can tell, none of the settings in conf.user.json has any effect at all.

The configuration file is read in its entirety when Typora starts up, all 1400 or so bytes of it. (Thank you, procmon.) It just is not acted upn. :(

What am I doing wrong?

Thanks,
Felix.

/** For advanced users. */ { "defaultFontFamily": { "standard": "Brill", //String - Defaults to "Times New Roman". "serif": "Brill", // String - Defaults to "Times New Roman". "sansSerif": "Brill", // String - Defaults to "Arial". "monospace": "Cascadia Code SemiLight" // String - Defaults to "Courier New". }, "autoHideMenuBar": false, //Boolean - Auto hide the menu bar unless the Alt key is pressed. Default is false.

// Array - Search Service user can access from context menu after a range of text is selected. Each item is formatted as [caption, url] "searchService": [ ["Search with Google", "https://google.com/search?q=%s"] ],

// Custom key binding, which will override the default ones. // see https://support.typora.io/Shortcut-Keys/#windows--linux for detail "keyBinding": { // for example: // "Always on Top": "Ctrl+Shift+P" // All other options are the menu items 'text label' displayed from each typora menu // "Insert Local Images...": "Ctrl+Shift+P" "Insert Table": "Alt+T", "Task List": "Ctrl+Shift+T", "Always On Top": "Ctrl+Shift+P" },

"monocolorEmoji": false, //default false. Only work for Windows "maxFetchCountOnFileList": 500, "flags": [] // default [], append Chrome launch flags, e.g: [["disable-gpu"], ["host-rules", "MAP * 127.0.0.1"]] }

felixkasza avatar Aug 14 '24 06:08 felixkasza