Zohra 1 Posted May 28, 2020 Share Posted May 28, 2020 Hi! There is one thing I've always needed to do with Evernote to make my notetaking faster/more intuitive. I'd love to see automatic headlines whenever I type: ENTER, [short text], ENTER. There could be a dropdown upon hovering on the headline to turn automatic headlines on/off. It just makes it faster when I don't have to pause and select a header or adjust font size/etc., and when I skim through my notes and can see the titles for each new set of paragraphs. Hotkeys in general for other quick adjustments would also be great! 1 Link to comment
Paul A. 499 Posted June 2, 2020 Share Posted June 2, 2020 Totally agree. These are helpful suggestions. Link to comment
Level 5* DTLow 5,728 Posted June 2, 2020 Level 5* Share Posted June 2, 2020 On 5/28/2020 at 11:24 AM, Zohra said: I'd love to see automatic headlines whenever I type: How about markdown style (# ## ###) This has been implemented in the latest beta versions Link to comment
Paul A. 499 Posted June 3, 2020 Share Posted June 3, 2020 23 hours ago, DTLow said: How about markdown style (# ## ###) This has been implemented in the latest beta versions That's a helpful suggestion; thank you. Link to comment
wmxl 0 Posted May 3 Share Posted May 3 Than, how to remove the headline format, and what' the shortcut? Link to comment
Mike P 2,248 Posted May 4 Share Posted May 4 21 hours ago, wmxl said: Than, how to remove the headline format, and what' the shortcut? There is no shortcut to return a header style (Large, Medium or Small) to normal text. You need to highlight the text and use the drop down menu to select "normal text". It is possible to automate this process - I use AutoHotKey. When I type #### or 4# followed by a space, infront of a header it changes it to normal text. This is consistent with what happens if you type #. ## or ### in front. The code for AutoHotKey (Windows only I'm afraid) is here. Basically it just cuts the text and pastes it back using "paste and match style" #HotIf WinActive("ahk_exe Evernote.exe") ::####:: ::4#:: { SetKeyDelay 30 SendEvent "+{End}^c{Home}+{End}{Del}^+v" } 2 Link to comment
The Jakes 1 Posted July 14 Share Posted July 14 I'm using the following applescript on Mac, tied to a hotkey (using Alfred): tell application "System Events" set activeApp to first application process whose frontmost is true end tell if name of activeApp is "Evernote" tell application "Evernote" tell application "System Events" key code 123 using command down key code 124 using { command down, shift down } keystroke "x" using command down keystroke "v" using { command down, shift down } key code 123 end tell end tell else log "NOT EVERNOTE" end if Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now