Fixed
Status Update
Comments
sa...@google.com <sa...@google.com> #2
In your example, you would be happy if a shortcut can trigger a script much in the same way as you would trigger from the editor. The reason I ask is that there differences on how you execute the script.
lo...@gmail.com <lo...@gmail.com> #3
I have VBA macros written for some common tasks such as highlight a cell with a color yellow. I will have a macro called highlightYellow and will map it to Ctrl-Y. So, when I have to highlight some cells yellow, I select and press ctrl-y. This helps me save time and repeat this often.
hg...@gmail.com <hg...@gmail.com> #4
duplicate of issue 36752293 ?
jk...@google.com <jk...@google.com>
yi...@gmail.com <yi...@gmail.com> #5
It would be useful to be able to consume a sequence of keystrokes in the manner Vi and Emacs do. With JavaScript syntax, it would be easy for people to create many commands. I can't imagine doing it in VBA.
da...@gmail.com <da...@gmail.com> #6
would be great
mi...@gmail.com <mi...@gmail.com> #7
I like the suggestion in #6. Would like to see a sequence of keystrokes ala Emacs if that is possible.
ke...@asu.edu <ke...@asu.edu> #8
Working with a Mac with Parallels, so switching between Windows and OSX constantly. I want a way to map some of the basic windows keyboard shortcuts to Google Docs under Chrome running under OSX, and even though I can do so for Chrome as a browser using OSX keyboard shortcuts, I can't for Google Docs. I was hoping this would at least provide a way to do it, either by A) exposing keypress events or B) allowing a shortcut key sequence to be defined for a menu item, then I would code that menu item to execute the desired function.
Looking for, at a minimum, the Ctrl-Z shortcut.
Looking for, at a minimum, the Ctrl-Z shortcut.
lo...@gmail.com <lo...@gmail.com> #9
Ref: Comment #6 . I too would love to see vi like commands in the AppScript.
gi...@gmail.com <gi...@gmail.com> #10
I would love even just a simple CTRL+key. Multiple keystroke might be developed later, or build over the simple mechanism at application layer.
sp...@gmail.com <sp...@gmail.com> #11
I'm also interested in this feature -- and would like to see it available for other document types. Example: a "smart" screenplay editor that auto-formats a paragraph based on a keyboard shortcut.
ha...@gmail.com <ha...@gmail.com> #12
I like Content Assist function, But Ctrl+Space is used to switch input methods in Chinese system which cant't change in Chromebook. Also some other system keystroke maybe occupied that key.
al...@gmail.com <al...@gmail.com> #13
Have just done the google mail snooze mini-tutorial and now would love to have a keyboard shortcut I can press to "snooze" emails to 7 days, rather than the "select Move-to label, type, select correct label, press enter dance": http://gmailblog.blogspot.co.uk/2011/07/gmail-snooze-with-apps-script.html
sh...@ShitalShah.com <sh...@ShitalShah.com> #14
Docs doesn't have keyboard shortcut to insert equation. Reaching out for mouse everytime when writing technical documents is a major pain. If this feature was available, users would have solved the problem themselves without waiting on the team.
sk...@gmail.com <sk...@gmail.com> #15
This is necessary to develop serious add-ons!
gu...@gmail.com <gu...@gmail.com> #16
please! app script googlers, make this feature available at least thru Chrome if nothing else.
na...@gmail.com <na...@gmail.com> #18
I would love this feature. I have some large spreadsheets with various scripts. Everything would be much more easy if I can access those scripts via shortcuts. !
je...@carolinasilencer.com <je...@carolinasilencer.com> #19
This seems like a no brainer, being able to use custom keyboard shortcuts with scripts would be fantastic - and frankly, is almost a requirement for quickly accessing various scripts. Not being able to do this is a major down side to google scripts. This needs to be added.
[Deleted User] <[Deleted User]> #20
Google, please add such needed feature!
be...@gmail.com <be...@gmail.com> #21
Please add this feature. In the mean time, if anyone knows of a workaround, please post it here. Tamper monkey?
ec...@burrislogistics.com <ec...@burrislogistics.com> #22
This is highly needed... it would double the value of the scripts at least
pl...@gmail.com <pl...@gmail.com> #24
Scripting in google docs without keyboard shortcuts is very poor compared with what Microsoft enables. It is very strange that for 3 years Google guys did nothing to enable such obvious and used-everywhere feature
ro...@kwyk.fr <ro...@kwyk.fr> #25
Great idea to add such a convenient feature. It would indeed help us to be more productive.
I have a little hack though. You can create a custom menu for triggering macros, and then using ALT+H and arrows you can manage to trigger them using your keyboard.
I have a little hack though. You can create a custom menu for triggering macros, and then using ALT+H and arrows you can manage to trigger them using your keyboard.
ix...@umail.ie <ix...@umail.ie> #26
This feature would be highly useful.
As a workaround I think you can create a menu option and then use a Chrome Extension such as Vivium to assign a shortcut to press the menu option.
As a workaround I think you can create a menu option and then use a Chrome Extension such as Vivium to assign a shortcut to press the menu option.
et...@gmail.com <et...@gmail.com> #27
Yup... would be really nice.
I guess we must be close to seing this. With every new version, Google SpreadSheet shortens the gap with Excel.
Keep up the good work.
I guess we must be close to seing this. With every new version, Google SpreadSheet shortens the gap with Excel.
Keep up the good work.
sc...@bryanp.com <sc...@bryanp.com> #31
If manually clicking an Add-on sidebar button doesn't suffice, wouldn't using a local / desktop scripting program ( like AutoHotKey ) that listens for key combos and clicks that Add-on button work well enough? I'd prefer to see custom key combo assignment come to ChromeOS before the Apps Script team spends time engineering it for just Sheets.
sc...@bryanp.com <sc...@bryanp.com> #32
In addition, the new IFRAME mode in HtmlService does allow for key codes to be passed on to Add-ons...
$(document).keydown(function(e){
//CTRL + V keydown combo
if(e.ctrlKey && e.keyCode == 86){
$( '#output' ).html("I've been pressed!");
}
})
Have to click on / activate the sidebar first for that to happen.
$(document).keydown(function(e){
//CTRL + V keydown combo
if(e.ctrlKey && e.keyCode == 86){
$( '#output' ).html("I've been pressed!");
}
})
Have to click on / activate the sidebar first for that to happen.
aa...@gmail.com <aa...@gmail.com> #33
@#33, doesn't that only bind the keyboard shortcut to the sidebar? So the user still has to click the sidebar to be able to activate the keyboard shortcut, right? How are you defining "document" in $(document) such that it applies anywhere on the page or text?
sc...@bryanp.com <sc...@bryanp.com> #34
@34, yeah sidebar would listen for keyboard only when active. exposing an onKeyDown() simple trigger that the entire active Doc or Sheet listens for i think is still the main request
da...@gmail.com <da...@gmail.com> #35
perhaps this could be a type of trigger. keyboard shortcuts such as CTRL or ALT to run a script or menu item.
da...@gmail.com <da...@gmail.com> #36
another idea.
triggers like on open and on edit... could add a trigger like onkeystroke(ctrl-z)
or something like that.
triggers like on open and on edit... could add a trigger like onkeystroke(ctrl-z)
or something like that.
mi...@gmail.com <mi...@gmail.com> #37
I just spent two years convincing my office to switch to Google Docs. I have a guy that just jump back to Word because I can't create a custom keyboard shortcut. This is completely unacceptable. I'm putting myself out there for you, how about you do the same for me.
[Deleted User] <[Deleted User]> #38
<purged>
jo...@gmail.com <jo...@gmail.com> #39
#39, have you looked at LaTex?
xa...@smartmonkey.io <xa...@smartmonkey.io> #41
Is going to be implemented by Google? I'm really interested on this functionality
[Deleted User] <[Deleted User]> #42
I tried the "Shortcut Manager" add-on to Chrome to try to trigger an action while in google doc thinking I would then trigger a custom script. This works fine in several browser windows but when I open a google doc it seems to get blocked just when I want it.
I can't for the life of me think why more people haven't requested the functionality discussed in this thread. It seems to me a very basic requirement of any reasonably sophisticated program to offer keyboard shortcuts.
Scripts is crippled without this.
I can't for the life of me think why more people haven't requested the functionality discussed in this thread. It seems to me a very basic requirement of any reasonably sophisticated program to offer keyboard shortcuts.
Scripts is crippled without this.
fi...@gmail.com <fi...@gmail.com> #43
WAKE UP GOOGLE! Come on, I told my boss "sure, it should be possible". Why not?:
function onOpen(e) {
SpreadsheetApp.getUi()
.createMenu('My Menu')
.addItem('My Menu Item', 'myFunction', 'myKeyboardShortcut')
}
I don't think that is hard to implement, there might be something behind that.. security issues? don't think so.. At least explain why you don't implement it..
function onOpen(e) {
SpreadsheetApp.getUi()
.createMenu('My Menu')
.addItem('My Menu Item', 'myFunction', 'myKeyboardShortcut')
}
I don't think that is hard to implement, there might be something behind that.. security issues? don't think so.. At least explain why you don't implement it..
[Deleted User] <[Deleted User]> #44
In particular, I'd like to be able to define short-cut keys to do special characters like a non-breaking space etc. Microsoft does this well.
lu...@gmail.com <lu...@gmail.com> #45
[Comment deleted]
da...@apsincorp.com <da...@apsincorp.com> #46
Please add, how has this not been added already... please add the other company we work with refuses to use excel and I have to suffer through this crap
mh...@gmail.com <mh...@gmail.com> #47
This is a crippling missing feature.
ad...@bouquillon.com <ad...@bouquillon.com> #48
yes please
fi...@gmail.com <fi...@gmail.com> #49
There should be an OpenSource alternative for docs, spreadsheet, etc.. and we'd all be pleased.. sorry Google. The same way I change from JS Maps Api to Leaflet js... Anyone knows some? I know it is not so 'correct' to say it in this forum.. well. I like Google tools, but some times they are too close..
[Deleted User] <[Deleted User]> #50
Yes, there are OpenSource alternatives: OpenOffice and LibreOffice come to mind.
fi...@gmail.com <fi...@gmail.com> #51
but, do they offer the GREAT feature of editing the same document at the same time through the internet?? I think this is why most people choose it, at least that is why I do...
fi...@gmail.com <fi...@gmail.com> #53
great, thanks! the only problem is that I use Ubuntu 14.04 LTS .. =S I hope it works with 16.04 LTS, I may upgrade.
wa...@gmail.com <wa...@gmail.com> #54
This came ware on Kendra Barker phone
ma...@gmail.com <ma...@gmail.com> #55
ZOMG ADD THIS FEATURE PLEASE LAZORS!!!!
Thanks!
Thanks!
[Deleted User] <[Deleted User]> #58
I'd definitely use this. There are a number of these I used in Excel. I'm 90% transitioned from Excel, save features such as this one.
dp...@gmail.com <dp...@gmail.com> #59
How has this not been added more than 6 years later...?
mh...@gmail.com <mh...@gmail.com> #60
So pathetic. Google is the new, crappier Microsoft.
sn...@wccs.nsw.edu.au <sn...@wccs.nsw.edu.au> #61
Whilst it is not a fix - it is a "workable" alternative - CTRL+ALT+H opens the Help menu - press the right arrow to get to the Add-Ons menu then down arrow to the menu item I want to use.
jo...@gmail.com <jo...@gmail.com> #62
@snels Honestly, that's not a bad solution because it could be mapped to a keyboard macro (although frustrating for a novice user). Also, it's Alt+Shift+H or Alt+H
mc...@cep-redlands.com <mc...@cep-redlands.com> #63
Programmable Keyboard hot keys for scripts would be fantastic. Otherwise, Programming in Docs is crippled.
jo...@gmail.com <jo...@gmail.com> #64
+1 for shortcuts for Google Apps Script function trigger.
ad...@itnews-bg.com <ad...@itnews-bg.com> #65
7 years later, could we please have this implemented?
bh...@gmail.com <bh...@gmail.com> #66
What they said ^^^
mi...@gmail.com <mi...@gmail.com> #67
It staggers me that this feature has not been implemented yet. The ability to program functionality into google apps is an essential feature, but little extras like keyboard mapping to scripts, is what google scripting needs to jump into the truly "professional" category.
mh...@gmail.com <mh...@gmail.com> #68
Google Apps Scripting is a ghetto.
fi...@gmail.com <fi...@gmail.com> #69
Community should make an OpenSource alternative, could be LibreOffice community..
lo...@gmail.com <lo...@gmail.com> #70
Off-topic, but it's the easy collaboration and commenting that keeps me in the Google Docs ecosystem. Otherwise, I'd love to switch.
tp...@gmail.com <tp...@gmail.com> #71
Please add this feature. What kind of IDE is that, which doesn't have a shortcut to run the script?
vi...@gmail.com <vi...@gmail.com> #72
I added a custom menu with a few items and was wishing for this feature.
gh...@gmail.com <gh...@gmail.com> #73
I've spent considerable time researching a solution to custom hotkeys with no success. Please support this feature.
an...@gmail.com <an...@gmail.com> #74
This has been one of the main reason why I'm not fully vested in this platform with my firm yet, rewriting VBA to Google App Script is easy, but it is currently quite inconvenient to execute the code.
ry...@google.com <ry...@google.com>
mh...@gmail.com <mh...@gmail.com> #75
This would be wicked welcome! Thank you much!
mo...@gmail.com <mo...@gmail.com> #76
Yes this would be a major improvement, and be much appreciated.
bl...@gmail.com <bl...@gmail.com> #77
The lack of this feature has been seriously handicapping my productivity. I am trying to use Google Docs as a unified place to write onboarding guides for my organization, and I want to include code syntax highlighting. Currently the plugin I use requires me to click 4 times to accomplish a task that should be possible in one key shortcut.
jo...@thulinconsulting.com <jo...@thulinconsulting.com> #78
Adding my voice, please add this feature!
[Deleted User] <[Deleted User]> #79
Yes please. Just choosing a monospace font for some text, as one would want for code, requires selecting it from the menu. It can be easily done from a script, but to be convenient to access, we need to be able to specify shortcut keys for the scripts.
mr...@blispay.com <mr...@blispay.com> #80
+1
ja...@lcrft.com <ja...@lcrft.com> #81
I'd appreciate this function also. Please add my vote.
je...@gmail.com <je...@gmail.com> #82
+1
bo...@gmail.com <bo...@gmail.com> #83
+1
ad...@gmail.com <ad...@gmail.com> #84
+1
an...@schuldei.org <an...@schuldei.org> #85
Can we get a little inside why this is such a long standing issue, and why it is hard to implement? (Given the obvious usability and flexibility improvements, there must be serious implementational and architectural issues to wait this long, and i would love to get a glimpse into them.)
mc...@cep-redlands.com <mc...@cep-redlands.com> #86
Anyone from google paying attention to this thread?
Has there been an institutional decision to restrict extendability and programmability of Docs?
Lack of programmable hot-keys in Docs impairs the development of custom documentation applications.
Has there been an institutional decision to restrict extendability and programmability of Docs?
Lack of programmable hot-keys in Docs impairs the development of custom documentation applications.
ni...@gmail.com <ni...@gmail.com> #87
Google. We need this.
al...@gmail.com <al...@gmail.com> #88
+1
it...@lisluanda.com <it...@lisluanda.com> #89
+1
co...@vietnambiz.com <co...@vietnambiz.com> #90
+1
tw...@fablelabs.com <tw...@fablelabs.com> #91
+1
ad...@jpress.co.uk <ad...@jpress.co.uk> #92
Unstarred , because the issue has been around since Nov 2010!!!
da...@gmail.com <da...@gmail.com> #93
Don't unstar it! That just tells google you don't care about this issue.
ms...@gmail.com <ms...@gmail.com> #94
my gmail wont send or recieve mails
je...@gmail.com <je...@gmail.com> #95
This is truly a must have.
lu...@lgwstudios.com <lu...@lgwstudios.com> #96
There should be an easy straightforward way to add shortcuts for very menu item in a custom menu, beside adding shortcuts directly to script functions
gd...@thorpehouse.co.uk <gd...@thorpehouse.co.uk> #97
It is a bit silly that in 2017 you cannot change shortcuts or assign your own to GAS functions within google sheets.
Like many others I am trying to make the move from Excel/VBA to google sheets/GAS but I am finding it very limiting and frustrating.
I see the status is accepted, does that mean an improvement is in the pipeline or has it been that way for the last 7+ years?
Like many others I am trying to make the move from Excel/VBA to google sheets/GAS but I am finding it very limiting and frustrating.
I see the status is accepted, does that mean an improvement is in the pipeline or has it been that way for the last 7+ years?
qu...@gmail.com <qu...@gmail.com> #98
​​This might sound naive to more seasoned coders, but can't Google assign even just one sort of "master" key to invoke a macro player?
For example, a new type to trigger might be added, that responds to custom key combinations, that the coder would have already specified in Code.gs. These key combinations would not conflict with existing shortcuts because they can only be called after that master key, say, F7, is pressed.
After set up, the user would then hit F7, and Sheets would send a visual cue (a modal dialog box? something else?) that it will now expect a combination shortcut---Ctrl-H or Ctrl-Alt-F3 or whatever. And then the macro would run.
I'm making a suggestion because obviously Google has the resources and the expertise to implement our request. So what's stopping them? Perhaps restrictions brought about by browser standards outside their control? Or Javascript rules?
My point is, I'm open to not having the traditional approach of invoking the shortcut key directly, and instead placing it after a prefix of some sort. The "Alt" key already works in a similar fashion, after all. When you hit it on many systems, you are able to use single letters to call commands on the menu.
Just saying. Because this issue really limits my ability help my end users.
For example, a new type to trigger might be added, that responds to custom key combinations, that the coder would have already specified in Code.gs. These key combinations would not conflict with existing shortcuts because they can only be called after that master key, say, F7, is pressed.
After set up, the user would then hit F7, and Sheets would send a visual cue (a modal dialog box? something else?) that it will now expect a combination shortcut---Ctrl-H or Ctrl-Alt-F3 or whatever. And then the macro would run.
I'm making a suggestion because obviously Google has the resources and the expertise to implement our request. So what's stopping them? Perhaps restrictions brought about by browser standards outside their control? Or Javascript rules?
My point is, I'm open to not having the traditional approach of invoking the shortcut key directly, and instead placing it after a prefix of some sort. The "Alt" key already works in a similar fashion, after all. When you hit it on many systems, you are able to use single letters to call commands on the menu.
Just saying. Because this issue really limits my ability help my end users.
jo...@gmail.com <jo...@gmail.com> #99
+1
pi...@netelek.co.za <pi...@netelek.co.za> #100
Is there any way that Google will give feedback on this issue which is outstanding for many years now? From the comments it is obviously an issue that is seriously required by a lot of people.
ji...@gmail.com <ji...@gmail.com> #101
What about open an new issue, that google is not responding at this issue?
:-)
:-)
se...@gmail.com <se...@gmail.com> #102
+1
jj...@gmail.com <jj...@gmail.com> #103
+1
db...@camrusschool.org.uk <db...@camrusschool.org.uk> #104
+1
as...@gmail.com <as...@gmail.com> #105
+1
ga...@gmail.com <ga...@gmail.com> #106
+1
da...@theanou.com <da...@theanou.com> #107
+1
jh...@gmail.com <jh...@gmail.com> #108
Obviously the various Google apps read the keystrokes, so even exposing a set of ten (say Alt-Shift-0 through Alt-Shift-9) to binding by script would be a help. Then a scripter could create a small set of individual scripts that could be invoked without taking the hands off the keyboard and moving to the mouse. A workable side-step would be an action recording (attached to a keystroke!) which replays some actions: something to play stored input.
Related to this feature is the concept of user space: a script can apply to a document or (if you have the right agreement with Google) a firm. It would be very helpful if a user could create a script that applies to their environment: then users could define a tool or script (such as "apply monospace to selected text or current element") and have it carry through to all their own documents.
These would go a great deal toward turning various Google docs from what I currently experience (great collaboration tools but poor writing tools) to something usable for collaboration and writing.
I speak for myself only. None of my statements should be attributed to or held against my employer.
Related to this feature is the concept of user space: a script can apply to a document or (if you have the right agreement with Google) a firm. It would be very helpful if a user could create a script that applies to their environment: then users could define a tool or script (such as "apply monospace to selected text or current element") and have it carry through to all their own documents.
These would go a great deal toward turning various Google docs from what I currently experience (great collaboration tools but poor writing tools) to something usable for collaboration and writing.
I speak for myself only. None of my statements should be attributed to or held against my employer.
jo...@gmail.com <jo...@gmail.com> #109
+1
ca...@gmail.com <ca...@gmail.com> #110
The lack of this functionality is killing me -- tedium, errors, etc. Going on 8 years now with no help at all!!!
ma...@londonappdeveloper.com <ma...@londonappdeveloper.com> #111
+1 Would be great to have this feature.
jd...@gmail.com <jd...@gmail.com> #112
Please please add this!
[Deleted User] <[Deleted User]> #113
Has anyone ever heard from Google as to why they won't make this change? Is GAS being left on the heap to die? The scripting here is so limited in giving user feedback, it's ridiculous. I wrote an app extension to Google Sheets and would love to add help text. No events for hover, focus and no way to use a hotkey. Google, you're missing the boat again. AWS took the crown from you for hosting because they didn't snub PHP and other scripting languages. When someone comes out with a decent, collaborative suite that isn't so elitist, you'll lose to them too.
People have been clamoring for this feature for 8 years. What is the deal?
People have been clamoring for this feature for 8 years. What is the deal?
da...@gmail.com <da...@gmail.com> #114
Do we have any updates on when it will be included?
vo...@gmail.com <vo...@gmail.com> #115
still up?
rr...@rubenrivera.mx <rr...@rubenrivera.mx> #116
[Deleted User] <[Deleted User]> #117
That's super! But it is mainly Google Docs that I was hoping to get the keyboard shortcuts in. Hopefully now that it's in Sheets, they'll add it to Docs.
Also it's a pretty limited set of keyboard shortcuts, requiring pressing three modifier keys, but it's still a welcome improvement and I'm glad they listened.
Also it's a pretty limited set of keyboard shortcuts, requiring pressing three modifier keys, but it's still a welcome improvement and I'm glad they listened.
pa...@angelcatalyst.com <pa...@angelcatalyst.com> #118
My thanks to Google! I have already put this to work, wha who!
May many more such improvements come soon so we can eventually do any keyboard mapping needed :).
May many more such improvements come soon so we can eventually do any keyboard mapping needed :).
qu...@gmail.com <qu...@gmail.com> #119
At long last --- 10 customize-able slots for keyboard shortcuts!
(Never mind that each one takes almost all the fingers of one hand. )
Thanks Google... Even though it certainly *took* you long enough, hehehe.
(Never mind that each one takes almost all the fingers of one hand. )
Thanks Google... Even though it certainly *took* you long enough, hehehe.
ek...@google.com <ek...@google.com> #120
As mentioned by others, Google Sheets launched Macros, which allow you to assign keyboard shortcuts to a macro. You can import an existing script function as a macro and assign it a shortcut. More information on the manifest fields that allow you to define these shortcuts manually is available here:
https://developers.google.com/apps-script/guides/sheets/macros#manifest_structure_for_macros
[Deleted User] <[Deleted User]> #121
This is not fixed. It's only fixed in Sheets, not Docs. Docs is where I really wanted it. You can close the ticket when it's fixed in Docs.
hj...@gmail.com <hj...@gmail.com> #122
@grantstreet you can follow this feature request:
"Feature request: map shortcut to script functions in Google Docs"
https://issuetracker.google.com/issues/79461369
"Feature request: map shortcut to script functions in Google Docs"
[Deleted User] <[Deleted User]> #123
--
*Lyle Kopnicky, **Perl Software Developer*
*Grant Street Group*Ph: (412) 391-5555, Ext. 6817
tg...@gmail.com <tg...@gmail.com> #124
Yes, sheets has had this functionality for a long time. How does one
assign hot key shortcuts to call custom scripts in DOCs?
On Wed, May 9, 2018 at 7:43 AM, <buganizer-system@google.com> wrote:
assign hot key shortcuts to call custom scripts in DOCs?
On Wed, May 9, 2018 at 7:43 AM, <buganizer-system@google.com> wrote:
ga...@gmail.com <ga...@gmail.com> #125
just as a disclaimer, I do somewhat understand the concept of macros; however, (and I'm not sure that this is related to this issue) what about creating a whole new shortcut with apps script to execute an insertion to a spreadsheet cell, specifically for checkboxes? How would this be done? or am I asking the wrong questions?
[Deleted User] <[Deleted User]> #126
Authors need this capability for Docs, not just sheets. My issue is tweaking paragraph spacing in Docs, as I can with a macro in MS Word.
There is already support for some client-side events (big list of built-in keyboard shortcuts), so it's a matter of exposing that API and providing a way to attach one's own JavaScript code.
Or just add keyboard shortcuts for paragraph/line spacing the way there already are for embedded media in Docs.
There is already support for some client-side events (big list of built-in keyboard shortcuts), so it's a matter of exposing that API and providing a way to attach one's own JavaScript code.
Or just add keyboard shortcuts for paragraph/line spacing the way there already are for embedded media in Docs.
al...@gmail.com <al...@gmail.com> #127
Add to Docs as well please
ke...@toptal.com <ke...@toptal.com> #128
Yeah, I'm not sure why this is closed. Yes there is https://issuetracker.google.com/issues/79461369 but the OP did not specify Sheets or Docs, so until it's available on both, this issue shouldn't be marked "Fixed."
so...@gmail.com <so...@gmail.com> #129
Docs!
pa...@redenergy.com.au <pa...@redenergy.com.au> #130
OP responded in #3 with a description of using the feature in sheets: "...tasks such as highlight a cell with a color yellow".
pn...@hbs.edu <pn...@hbs.edu> #131
Please add this capability to Docs. I specifically want to script the ability to create a style palette and add keyboard shortcuts for activating the palette and styling text with one of the styles in the palette. Right now there is only one format supported by a keyboard shortcut, and that is Normal Text. Many documents need several different forms of formatting - especially when creating documents with code snippets.
[Deleted User] <[Deleted User]> #132
+1 for this to Docs, please :)
[Deleted User] <[Deleted User]> #133
+1 for docs!
ma...@gmail.com <ma...@gmail.com> #134
+1 for Google Docs.
Microsoft is winning this one for a lot of utilities. Docs is supposed to buffer the loss of functionality of highly copyrighted material by having publishable addons. I am writing this after discussing the need for a hotkey for a LaTeX add-on. I truly wish I could share this addon to get more users familiar with chrome, but they'll probably use firefox for this one!
Microsoft is winning this one for a lot of utilities. Docs is supposed to buffer the loss of functionality of highly copyrighted material by having publishable addons. I am writing this after discussing the need for a hotkey for a LaTeX add-on. I truly wish I could share this addon to get more users familiar with chrome, but they'll probably use firefox for this one!
[Deleted User] <[Deleted User]> #135
+1 for hotkeys for a LaTeX add-on! Also great for highlighting code blocks.
so...@gmail.com <so...@gmail.com> #136
+1 this is needed
ke...@gmail.com <ke...@gmail.com> #137
+1 for Docs
ke...@northbaysolutions.com <ke...@northbaysolutions.com> #138
+1 for Doc please!
wa...@sbctech.net <wa...@sbctech.net> #139
Looks like option for Google Drive Right Click Menu is announced in Next 19. Waiting for this to be available for all developers.
https://youtu.be/6XCr60vRs2Y?t=66
ke...@gmail.com <ke...@gmail.com> #140
+1 for Docs, please!
ke...@gmail.com <ke...@gmail.com> #141
+1 for Docs
st...@gmail.com <st...@gmail.com> #142
+1 for Docs
hn...@gmail.com <hn...@gmail.com> #143
+ for Docs
he...@gmail.com <he...@gmail.com> #144
+1
do...@gmail.com <do...@gmail.com> #145
+1
sh...@oti.airforce <sh...@oti.airforce> #146
Question: This issue is marked as "Fixed" as of May 9, 2018 09:42AM, and it clearly is tagged as applying to "Sheets" not Docs. Will all these +1 comments do anything to bring the feature to Docs? I don't think so. Based on the comment at May 9, 2018 12:51PM, go to https://issuetracker.google.com/issues/79461369 .
27...@gmail.com <27...@gmail.com> #147
+1
ol...@gmail.com <ol...@gmail.com> #148
Google Macros is crap.
1) Very cumbersome to distribute Macro among all the spreadsheets (unlike Microsoft)
2) Keyboard shortcuts are restricted by 10 numbers and VERY unconvenient keys Ctrl+Alt+Shift
Google is crappy monopoly, does not care about users at all
1) Very cumbersome to distribute Macro among all the spreadsheets (unlike Microsoft)
2) Keyboard shortcuts are restricted by 10 numbers and VERY unconvenient keys Ctrl+Alt+Shift
Google is crappy monopoly, does not care about users at all
nd...@gmail.com <nd...@gmail.com> #149
+1 for Doc
...as working with text using keyboard → annoying by mouse twice click custom menu → and so many times
...as working with text using keyboard → annoying by mouse twice click custom menu → and so many times
be...@gmail.com <be...@gmail.com> #150
I hope to see this feature.
What I want to do and eventually find this page, is that I want to insert a Date/Timestamp quickly to my Docs.
Most people know it is trivial in Sheets, just Ctrl+; ( or some variants ) . That's viable long before Macro for Sheets.
And the real pain is, I think I did that with F5 25+ years ago when using notepad in Windows 3.1
That's the very first thing I try to do with vim scripting 20+ years ago....
And I remember I started a thread in good old days Google Groups long before this issue ( or the issuetracker .... ) exists.
So 13 years ago I did my own grease monkey script and many other things.... that now I don't have time to do or to take care about.
And Google is so stubborn and aged.
What I want to do and eventually find this page, is that I want to insert a Date/Timestamp quickly to my Docs.
Most people know it is trivial in Sheets, just Ctrl+; ( or some variants ) . That's viable long before Macro for Sheets.
And the real pain is, I think I did that with F5 25+ years ago when using notepad in Windows 3.1
That's the very first thing I try to do with vim scripting 20+ years ago....
And I remember I started a thread in good old days Google Groups long before this issue ( or the issuetracker .... ) exists.
So 13 years ago I did my own grease monkey script and many other things.... that now I don't have time to do or to take care about.
And Google is so stubborn and aged.
ma...@gmail.com <ma...@gmail.com> #151
+1 for me as well
ch...@gmail.com <ch...@gmail.com> #152
+1
ma...@gmail.com <ma...@gmail.com> #153
+1
jw...@atb.com <jw...@atb.com> #154
+1
7a...@gmail.com <7a...@gmail.com> #155
+1
di...@gmail.com <di...@gmail.com> #156
+1
ca...@demandlab.com <ca...@demandlab.com> #157
+1
ja...@gmail.com <ja...@gmail.com> #158
Guys, adding the features of shortcuts (hotkey) and icons to custom menus on Google Sheets, Docs, and to the whole G Suite -now Google Workspace- would be highly appreciated, to say the least. Thanks!
ma...@greenwaves-technologies.com <ma...@greenwaves-technologies.com> #159
+1
su...@ebi.ac.uk <su...@ebi.ac.uk> #160
+1
st...@gmail.com <st...@gmail.com> #161
+1
jd...@gmail.com <jd...@gmail.com> #162
+1
ma...@gmail.com <ma...@gmail.com> #163
+1
an...@schuldei.org <an...@schuldei.org> #164
what is the progress on this?
ja...@eventbrite.com <ja...@eventbrite.com> #165
+1
dr...@gmail.com <dr...@gmail.com> #166
+1
ca...@demandlab.com <ca...@demandlab.com> #167
+1 for Docs support in addition to Sheets
ni...@gmail.com <ni...@gmail.com> #168
+1
ly...@gmail.com <ly...@gmail.com> #169
+ 1 for docs
an...@gmail.com <an...@gmail.com> #170
+1
t....@virhealth.fr <t....@virhealth.fr> #171
Comment has been deleted.
[Deleted User] <[Deleted User]> #172
+1
[Deleted User] <[Deleted User]> #173
Comment has been deleted.
tr...@gmail.com <tr...@gmail.com> #174
+1
ef...@gmail.com <ef...@gmail.com> #175
+1
mc...@gmail.com <mc...@gmail.com> #176
We need keyboard shortcuts for AppScript Functions in sheets, docs, everywhere. In sheets, the macro solution is a hack, not a real solution. There are many cases where you want to call one of a few functions on a per row basis. Crawling your mouse all the way up to the menu on every single row for 100 rows is ridiculous. I want to use the keyboard, down arrow, ctrl-u, down arrow, ctrl-i, something like that. boom boom very quick. This issue has been open a long time, there are an insane number of +1's. Google, get this done please.
mc...@gmail.com <mc...@gmail.com> #177
And what's the deal, this is marked "fixed" but clearly isn't. But all of the "duplicates" asking for this to really be fixed are marked closed and merged with this one.
mc...@gmail.com <mc...@gmail.com> #178
since this issue is erroneously marked "fixed" and clearly it isn't fixed, and since all of the other related issues are closed down after being mergedinto this issue, I created a new issue here, feel free to +1.
https://issuetracker.google.com/issues/196617707
an...@google.com <an...@google.com> #179
Hi there!
As explained on
This issue was closed on 2018. If you'd like to ask for a related feature request, please create one and make sure to fill out the template (feel free to reference this one, though).
Cheers!
Description
In VBA I can map a contrl-<Key> to a macro function. This allows me to execute functions I use often with shortcut.
It will be nice to have this functionality for App Script also.
Notes:
Provide any additional information which might be useful here.