Autohotkey, putting "D89dl" at the end of a sentence doesn't work as intended -


i have autohotkey script puts "d89dl" @ end of sentence everytime press enter, using autocorrect script doesn't work should. let's type "dont", "don't" instead of "don't.". blocking i'm not sure is, i've been trying months now.

here scripts:

enter:: send,d89dl{enter} return  #hotstring endchars -()[]{}:;'"/\,.?!`n `t ::dont::don't 

i thankful if of helps me this.

overall, know other way instead of autohotkey puts "d89dl" @ end of sentence?

the easiest solution seems to use :*: mode, trigger everytime misspelled word typed, without need hotstring endchars:

:*:dont::don't  

instead of using enter, suggest use special combination of keys enter string d89dl , press enter. use modifier ctrl or alt , key. reasoning key enter has important functionality , should not changed. pressing special combination appropriate, given special function does.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -