aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/tools/atalhos_de_teclado/index.html
blob: fdf9129b59bfe5f0c427d2e6b268aa38e453b414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
---
title: Todos os atalhos de teclado
slug: Tools/atalhos_de_teclado
tags:
  - Ferramentas
  - 'I10n:priority'
translation_of: Tools/Keyboard_shortcuts
---
<div>{{ToolsSidebar}}</div>

<p>Esta página lista todos os atalhos de teclado utilizados pelas ferramentas de desenvolvimento integradas no Firefox.</p>

<p>A primeira secção lista o atalho para abrir cada ferramenta e a segunda secção lista os atalhos que são aplicáveis ​​à própria 'Caixa de Ferramentas.' Depois disso, existe uma secção para cada ferramenta, que lista os atalhos que pode utilizar dentro dessa ferramenta.</p>

<p>Porque as chaves de acesso são dependentes do local, elas não estão documentadas nesta página.</p>

<h2 id="Abrir_e_fechar_ferramentas">Abrir e fechar ferramentas</h2>

<p>Estes atalhos funcionam na janela principal do navegador para abrir a ferramenta especificada. Para as ferramentas que estão alojadas na 'Caixa de Ferramentas', elas funcionam para fechar a ferramenta se estiver ativa. Para as ferramentas, tal como a 'Consola do Navegador' que abre numa nova janela, tem de fechar a janela para fechar a ferramenta.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Bring Toolbox to foreground (if the Toolbox is in a separate window and not in foreground)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> or <kbd>F12</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd> or <kbd>F12</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> or <kbd>F12</kbd></td>
  </tr>
  <tr>
   <th scope="row">Close Toolbox (if the Toolbox is in a separate window and in foreground)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> or <kbd>F12</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd> or <kbd>F12</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> or <kbd>F12</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open Web Console <a href="#opening-closing-web-console-note"><strong><sup>1</sup></strong></a></th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>K</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>K</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>K</kbd></td>
  </tr>
  <tr>
   <th scope="row">Toggle "Pick an element from the page" (opens the Toolbox and/or focus the Inspector tab)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>C</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>C</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>C</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open Style Editor</th>
   <td><kbd>Shift</kbd> + <kbd>F7</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F7</kbd> <a href="#mac-function-key-note" title="#mac-function-key-note">*</a></td>
   <td><kbd>Shift</kbd> + <kbd>F7</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open Profiler</th>
   <td><kbd>Shift</kbd> + <kbd>F5</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F5</kbd> <a href="#mac-function-key-note" title="#mac-function-key-note">*</a></td>
   <td><kbd>Shift</kbd> + <kbd>F5</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open Network Monitor <a href="#opening-closing-network-monitor-note"><strong><sup>2</sup></strong></a></th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>E</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>E</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>E</kbd></td>
  </tr>
  <tr>
   <th scope="row">Toggle Responsive Design Mode</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>M</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>M</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>M</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open Browser Console</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>J</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>J</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>J</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open Browser Toolbox</th>
   <td><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open Scratchpad</th>
   <td><kbd>Shift</kbd> + <kbd>F4</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F4 </kbd> <a href="#mac-function-key-note" title="#mac-function-key-note">*</a></td>
   <td><kbd>Shift</kbd> + <kbd>F4</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open WebIDE</th>
   <td><kbd>Shift</kbd> + <kbd>F8</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F8</kbd> <a href="#mac-function-key-note" title="#mac-function-key-note">*</a></td>
   <td><kbd>Shift</kbd> + <kbd>F8</kbd></td>
  </tr>
  <tr>
   <th scope="row">Storage Inspector</th>
   <td><kbd>Shift</kbd> + <kbd>F9</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F9</kbd> <a href="#mac-function-key-note" title="#mac-function-key-note">*</a></td>
   <td><kbd>Shift</kbd> + <kbd>F9</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open Debugger <strong><sup><a href="#opening-closing-debugger">3</a></sup></strong></th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>Z</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd></td>
  </tr>
 </tbody>
</table>

<p><a name="opening-closing-web-console-note">1. </a>Ao contrário das outras ferramentas hospedadas na caixa de ferramentas, este atalho também não fecha a consola da Web. Em vez disso, este concentra-se na linha de comando da consola da Web. Para fechar a consola, utilize o atalho da caixa de ferramentas global de<a name="opening-closing-web-console-note"> <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> (<kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd> num Mac).</a></p>

<p><a name="opening-closing-network-monitor-note">2. Antes do Firefox 55, o atalho de teclado era <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Q</kbd> (<kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>Q</kbd> num Mac).</a></p>

<p><a id="opening-closing-browser-console-note" name="opening-closing-browser-console-note">3. Até ao Firefox 38, quando uma 'Consola do Navegador' está ocultada por uma janela normal do Firefox, a mesma combinação de teclas fecha a consola. A partir do Firefox 38, se a 'Consola do Navegador' é ocultada por uma janela normal do Windows, esta combinação de teclas volta a apresentar esta consola no topo e foca-se na mesma.</a></p>

<p><a href="/en-US/docs/Tools_Toolbox#Settings" name="disabled-tools-shortcut">4. A ferramenta está desativada por predefinição, assim o atalho não funcionará até que este seja ativado no 'Painel das Definições'.</a></p>

<h2 id="Caixa_de_Ferramentas">Caixa de Ferramentas</h2>

<div id="toolbox-shortcuts">
<p>Estes atalhos funcionam sempre que a caixa de ferramentas estiver aberta, independentemente da ferramenta ativa.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Cycle through tools left to right</th>
   <td><kbd>Ctrl</kbd> + <kbd>]</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>]</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>]</kbd></td>
  </tr>
  <tr>
   <th scope="row">Cycle through tools right to left</th>
   <td><kbd>Ctrl</kbd> + <kbd>[</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>[</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>[</kbd></td>
  </tr>
  <tr>
   <th scope="row">
    <p>Toggle between active tool and settings</p>
   </th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>O</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>O</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>O</kbd></td>
  </tr>
  <tr>
   <th scope="row">Toggle between active tool and settings (new in Firefox 43)</th>
   <td><kbd>F1</kbd></td>
   <td><kbd>F1</kbd></td>
   <td><kbd>F1</kbd></td>
  </tr>
  <tr>
   <th scope="row">
    <p>Toggle toolbox between the last 2 <a href="/en-US/docs/Tools/Tools_Toolbox#Docking_mode">docking modes</a> (new in Firefox 41)</p>
   </th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>D</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>D</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>D</kbd></td>
  </tr>
  <tr>
   <th scope="row">Toggle split console (except if console is the currently selected tool)</th>
   <td><kbd>Esc</kbd></td>
   <td><kbd>Esc</kbd></td>
   <td><kbd>Esc</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<div id="all-toolbox-tools">
<p>Estes atalhos funcionam em todas as ferramentas que estão hospedadas na caixa de ferramentas.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>OS X</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Increase font size</th>
   <td><kbd>Ctrl</kbd> + <kbd> + </kbd></td>
   <td><kbd>Cmd</kbd> + <kbd> + </kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd> + </kbd></td>
  </tr>
  <tr>
   <th scope="row">Decrease font size</th>
   <td><kbd>Ctrl</kbd> + <kbd>-</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>-</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>-</kbd></td>
  </tr>
  <tr>
   <th scope="row">Reset font size</th>
   <td><kbd>Ctrl</kbd> + <kbd>0</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>0</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>0</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Editor_fonte">Editor fonte</h2>

<div id="source-editor">
<p>Esta tabela lista os atalhos predefinidos para o editor fonte.</p>

<p>Nas secção das '<a href="/pt-PT/docs/Tools/Tools_Toolbox">Preferências do Editor'</a> das configurações das ferramentas de desenvolvimento, pode escolher para utilizar Vim, Emacs, ou combinações de teclas de Sublime Text.</p>

<p>Para as selecionar, visite <code>about:config</code>, selecione a definição <code>devtools.editor.keymap</code>, e atribua "vim" ou "emacs", ou "sublime" para essa definição. Se fizer isso, as combinações selecionadas serão utilziadas para todas as ferramentas de desenvolvimento que utilziam o editor fonte. Precisa de reabrir o editor para que a alteração seja aplicada.</p>

<p>A partir do Firefox 33, a preferência de combinação de teclas está exposta na secção de <a href="/pt-PT/docs/Tools/Tools_Toolbox">Preferências do Editor </a>das definições das ferramentas de desenvolvimento, e pode definir isso lá, em vez de <code>about:config</code>.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>OS X</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Ir para a linha</th>
   <td><kbd>Ctrl</kbd> + <kbd>J</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>J</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>J</kbd></td>
  </tr>
  <tr>
   <th scope="row">Encontrar um ficheiro</th>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>F</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
  </tr>
  <tr>
   <th scope="row">Encontrar novamente</th>
   <td><kbd>Ctrl</kbd> + <kbd>G</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>G</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>G</kbd></td>
  </tr>
  <tr>
   <th scope="row">Selecionar tudo</th>
   <td><kbd>Ctrl</kbd> + <kbd>A</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>A</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>A</kbd></td>
  </tr>
  <tr>
   <th scope="row">Cortar</th>
   <td><kbd>Ctrl</kbd> + <kbd>X</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>X</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>X</kbd></td>
  </tr>
  <tr>
   <th scope="row">Copiar</th>
   <td><kbd>Ctrl</kbd> + <kbd>C</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>C</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>C</kbd></td>
  </tr>
  <tr>
   <th scope="row">Colar</th>
   <td><kbd>Ctrl</kbd> + <kbd>V</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>V</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>V</kbd></td>
  </tr>
  <tr>
   <th scope="row">Anular</th>
   <td><kbd>Ctrl</kbd> + <kbd>Z</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Z</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Z</kbd></td>
  </tr>
  <tr>
   <th scope="row">Refazer</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> / <kbd>Ctrl</kbd> + <kbd>Y</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> / <kbd>Cmd</kbd> + <kbd>Y</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> / <kbd>Ctrl</kbd> + <kbd>Y</kbd></td>
  </tr>
  <tr>
   <th scope="row">Indentar</th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Remover indentação</th>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Mover linha(s) para cima</th>
   <td><kbd>Alt</kbd> + <kbd>Up</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Up</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Up</kbd></td>
  </tr>
  <tr>
   <th scope="row">Mover linha(s) para baixo</th>
   <td><kbd>Alt</kbd> + <kbd>Down</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Down</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Down</kbd></td>
  </tr>
  <tr>
   <th scope="row">Comentar/remover comentário linha(s)</th>
   <td><kbd>Ctrl</kbd> + <kbd>/</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>/</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>/</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Inspetor_de_Página">Inspetor de Página</h2>

<div id="page-inspector">
<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Elemento de Inspeção</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>C</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>C</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>C</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Selecionador_de_Nodo">Selecionador de Nodo</h3>

<p>Estes atalhos funcionam enquanto o <a href="/pt-PT/docs/Tools/Page_Inspector/How_to/Selecionar_um_elemento#Com_o_selecionador_de_nodo">selecionador de nodo</a> estiver ativo.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Select the element under the mouse and cancel picker mode</th>
   <td><kbd>Click</kbd></td>
   <td><kbd>Click</kbd></td>
   <td><kbd>Click</kbd></td>
  </tr>
  <tr>
   <th scope="row">Select the element under the mouse and stay in picker mode</th>
   <td><kbd>Shift</kbd>+<kbd>Click</kbd></td>
   <td><kbd>Shift</kbd>+<kbd>Click</kbd></td>
   <td><kbd>Shift</kbd>+<kbd>Click</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Painel_HTML">Painel HTML</h3>

<p>Estes atalhos funcionam enquanto estiver no <a href="/pt-PT/docs/Tools/Page_Inspector/How_to/Examinar_e_editar_HTML" title="/en-US/docs/Tools/Page_Inspector#HTML_pane">painel Inspetor HTML</a>.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Delete the selected node</th>
   <td><kbd>Delete</kbd></td>
   <td><kbd>Delete</kbd></td>
   <td><kbd>Delete</kbd></td>
  </tr>
  <tr>
   <th scope="row">Undo delete of a node</th>
   <td><kbd>Ctrl</kbd> + <kbd>Z</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Z</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Z</kbd></td>
  </tr>
  <tr>
   <th scope="row">Redo delete of a node</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> / <kbd>Ctrl</kbd> + <kbd>Y</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> / <kbd>Cmd</kbd> + <kbd>Y</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> / <kbd>Ctrl</kbd> + <kbd>Y</kbd></td>
  </tr>
  <tr>
   <th scope="row">Move to next node (expanded nodes only)</th>
   <td><kbd>Down arrow</kbd></td>
   <td><kbd>Down arrow</kbd></td>
   <td><kbd>Down arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Move to previous node</th>
   <td><kbd>Up arrow</kbd></td>
   <td><kbd>Up arrow</kbd></td>
   <td><kbd>Up arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Expand currently selected node</th>
   <td><kbd>Right arrow</kbd></td>
   <td><kbd>Right arrow</kbd></td>
   <td><kbd>Right arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Collapse currently selected node</th>
   <td><kbd>Right arrow</kbd></td>
   <td><kbd>Right arrow</kbd></td>
   <td><kbd>Right arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Step forward through the attributes of a node</th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Step backward through the attributes of a node</th>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Start editing the selected attribute</th>
   <td><kbd>Enter</kbd></td>
   <td><kbd>Return</kbd></td>
   <td><kbd>Enter</kbd></td>
  </tr>
  <tr>
   <th scope="row">Hide/show the selected node</th>
   <td><kbd>H</kbd></td>
   <td><kbd>H</kbd></td>
   <td><kbd>H</kbd></td>
  </tr>
  <tr>
   <th scope="row">Focus on the search box in the HTML pane</th>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>F</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
  </tr>
  <tr>
   <th scope="row">Edit as HTML</th>
   <td><kbd>F2</kbd></td>
   <td><kbd>F2</kbd></td>
   <td><kbd>F2</kbd></td>
  </tr>
  <tr>
   <th scope="row">Copy the selected node's outer HTML (new in Firefox 42)</th>
   <td><kbd>Ctrl</kbd> + <kbd>C</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>C</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>C</kbd></td>
  </tr>
  <tr>
   <th scope="row">Scroll the selected node into view (new in Firefox 44)</th>
   <td><kbd>S</kbd></td>
   <td><kbd>S</kbd></td>
   <td><kbd>S</kbd></td>
  </tr>
  <tr>
   <th scope="row">Find the next match in the markup, when searching is active</th>
   <td><kbd>Enter</kbd></td>
   <td><kbd>Return</kbd></td>
   <td><kbd>Enter</kbd></td>
  </tr>
  <tr>
   <th scope="row">Find the previous match in the markup, when searching is active</th>
   <td><kbd>Shift</kbd> + <kbd>Enter</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Return</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Enter</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Barra_de_Breadcrumbs">Barra de <em>Breadcrumbs</em></h3>

<p>Este atalhos funcionam quando a <a href="/pt-PT/docs/Tools/Page_Inspector/How_to/Examinar_e_editar_HTML#Breadcrumbs_de_HTML">barra de breadcrumbs</a> estiver focada.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Move to the previous element in the breadcrumbs bar </th>
   <td><kbd>Left arrow</kbd></td>
   <td><kbd>Left arrow</kbd></td>
   <td><kbd>Left arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Move to the next element in the breadcrumbs bar </th>
   <td><kbd>Right arrow</kbd></td>
   <td><kbd>Right arrow</kbd></td>
   <td><kbd>Right arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Focus the <a href="/en-US/docs/Tools/Page_Inspector/UI_Tour#HTML_pane">HTML pane</a></th>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Focus the <a href="/en-US/docs/Tools/Page_Inspector/UI_Tour#CSS_pane">CSS pane</a></th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Painel_CSS">Painel CSS</h3>

<p>Estes atalhos funcionam quando estiver no <a href="/pt-PT/docs/Tools/Page_Inspector/How_to/Examinar_e_editar_CSS" title="/en-US/docs/Tools/Page_Inspector#CSS_pane">painel de Inspetor CSS</a>.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Focus on the search box in the CSS pane</th>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>F</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
  </tr>
  <tr>
   <th scope="row">Clear search box content (only when the search box is focused, and content has been entered)</th>
   <td><kbd>Esc</kbd></td>
   <td><kbd>Esc</kbd></td>
   <td><kbd>Esc</kbd></td>
  </tr>
  <tr>
   <th scope="row">Step forward through properties and values</th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Step backward through properties and values</th>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Start editing property or value (Rules view only, when a property or value is selected, but not already being edited)</th>
   <td><kbd>Enter</kbd> or <kbd>Space</kbd></td>
   <td><kbd>Return</kbd> or <kbd>Space</kbd></td>
   <td><kbd>Enter</kbd> or <kbd>Space</kbd></td>
  </tr>
  <tr>
   <th scope="row">Cycle up and down through auto-complete suggestions (Rules view only, when a property or value is being edited)</th>
   <td><kbd>Up arrow</kbd> , <kbd>Down arrow</kbd></td>
   <td><kbd>Up arrow</kbd> , <kbd>Down arrow</kbd></td>
   <td><kbd>Up arrow</kbd> , <kbd>Down arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Choose current auto-complete suggestion (Rules view only, when a property or value is being edited)</th>
   <td><kbd>Enter</kbd> or <kbd>Tab</kbd></td>
   <td><kbd>Return</kbd> or <kbd>Tab</kbd></td>
   <td><kbd>Enter</kbd> or <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Increment selected value by 1</th>
   <td><kbd>Up arrow</kbd></td>
   <td><kbd>Up arrow</kbd></td>
   <td><kbd>Up arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Decrement selected value by 1</th>
   <td><kbd>Down arrow</kbd></td>
   <td><kbd>Down arrow</kbd></td>
   <td><kbd>Down arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Increment selected value by 100</th>
   <td><kbd>Shift</kbd> + <kbd>Page Up</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Page Up</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Page Up</kbd></td>
  </tr>
  <tr>
   <th scope="row">Decrement selected value by 100</th>
   <td><kbd>Shift</kbd> + <kbd>Page Down</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Page Down</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Page Down</kbd></td>
  </tr>
  <tr>
   <th scope="row">Increment selected value by 10</th>
   <td><kbd>Shift</kbd> + <kbd>Up arrow</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Up arrow</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Up arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Decrement selected value by 10</th>
   <td><kbd>Shift</kbd> + <kbd>Down arrow</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Down arrow</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Down arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Increment selected value by 0.1</th>
   <td><kbd>Alt</kbd> + <kbd>Up arrow</kbd></td>
   <td><kbd>Opt</kbd> + <kbd>Up arrow</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Up arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Decrement selected value by 0.1</th>
   <td><kbd>Alt</kbd> + <kbd>Down arrow</kbd></td>
   <td><kbd>Opt</kbd> + <kbd>Down arrow</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Down arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Show/hide more information about current property (Computed view only, when a property is selected, new in Firefox 49)</th>
   <td><kbd>Enter</kbd> or <kbd>Space</kbd></td>
   <td><kbd>Return</kbd> or <kbd>Space</kbd></td>
   <td><kbd>Enter</kbd> or <kbd>Space</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open MDN reference page about current property (Computed view only, when a property is selected, new in Firefox 49)</th>
   <td><kbd>F1</kbd></td>
   <td><kbd>F1</kbd></td>
   <td><kbd>F1</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open current CSS file in Style Editor (Computed view only, when more information is shown for a property and a CSS file reference is focused, new in Firefox 49)</th>
   <td><kbd>Enter</kbd></td>
   <td><kbd>Return</kbd></td>
   <td><kbd>Enter</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Depurador">Depurador</h2>

<div id="debugger">
<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Open the Debugger</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>S</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>S</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>S</kbd></td>
  </tr>
  <tr>
   <th scope="row">Search for a string in the current file</th>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd> </td>
   <td><kbd>Cmd</kbd> + <kbd>F</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
  </tr>
  <tr>
   <th scope="row">Find next in the current file</th>
   <td><kbd>Ctrl</kbd> + <kbd>G</kbd> </td>
   <td><kbd>Cmd</kbd> + <kbd>G</kbd> </td>
   <td><kbd>Ctrl</kbd> + <kbd>G</kbd> </td>
  </tr>
  <tr>
   <th scope="row">Search for function definitions</th>
   <td><kbd>Ctrl</kbd> + <kbd>D</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>D</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>D</kbd></td>
  </tr>
  <tr>
   <th scope="row">Search for scripts by name</th>
   <td><kbd>Ctrl</kbd> + <kbd>P</kbd> </td>
   <td><kbd>Cmd</kbd> + <kbd>P</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>P</kbd></td>
  </tr>
  <tr>
   <th scope="row">Resume execution when at a breakpoint</th>
   <td><kbd>F8</kbd></td>
   <td><kbd>F8</kbd> <a href="#mac-function-key-note" title="#mac-function-key-note"><sup>1</sup></a></td>
   <td><kbd>F8</kbd></td>
  </tr>
  <tr>
   <th scope="row">Step over</th>
   <td><kbd>F10</kbd></td>
   <td><kbd>F10</kbd> <a href="#mac-function-key-note" title="#mac-function-key-note"><sup>1</sup></a></td>
   <td><kbd>F10</kbd></td>
  </tr>
  <tr>
   <th scope="row">Step into</th>
   <td><kbd>F11</kbd></td>
   <td><kbd>F11</kbd> <sup><a href="#mac-function-key-note" title="#mac-function-key-note">1</a></sup></td>
   <td><kbd>F11</kbd></td>
  </tr>
  <tr>
   <th scope="row">Step out</th>
   <td><kbd>Shift</kbd> + <kbd>F11</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F11</kbd> <sup><a href="#mac-function-key-note" title="#mac-function-key-note">1</a></sup></td>
   <td><kbd>Shift</kbd> + <kbd>F11</kbd></td>
  </tr>
 </tbody>
</table>

<p><a name="mac-function-key-note">1. By default, on some Macs, the function key is remapped to use a special feature: for example, to change the screen brightness or the volume. See this </a><a href="http://support.apple.com/kb/HT3399" title="http://support.apple.com/kb/HT3399">guide to using these keys as standard function keys</a>. To use a remapped key as a standard function key, hold the Function key down as well (so to open the Profiler, use <kbd>Shift</kbd> + <kbd>Function</kbd> + <kbd>F5</kbd>).</p>

<p><strong>Note:</strong> Before Firefox 66, the combination <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>S</kbd> on Windows and Linux or <kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>S</kbd> on macOS would open/close the Debugger. From Firefox 66 and later, this is no longer the case.</p>
</div>

<h2 id="Consola_da_Web">Consola da Web</h2>

<div id="old-debugger">
<div id="web-console">
<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Open the Web Console</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>K</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>K</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>K</kbd></td>
  </tr>
  <tr>
   <th scope="row">Search in the message display pane</th>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>F</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
  </tr>
  <tr>
   <th scope="row">Clear the <a href="/en-US/docs/Tools/Web_Console#Inspecting_objects" title="/en-US/docs/Tools/Web_Console#Inspecting_objects">object inspector pane</a></th>
   <td><kbd>Escape</kbd></td>
   <td><kbd>Escape</kbd></td>
   <td><kbd>Escape</kbd></td>
  </tr>
  <tr>
   <th scope="row">Focus on the command line</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>K</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>K</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>K</kbd></td>
  </tr>
  <tr>
   <th scope="row">Clear output</th>
   <td>
    <p><kbd>Ctrl</kbd> + <kbd>L</kbd></p>

    <p>From Firefox 44:</p>

    <p><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>L</kbd></p>
   </td>
   <td><kbd>Ctrl</kbd> + <kbd>L</kbd></td>
   <td>
    <p><kbd>Ctrl</kbd> + <kbd>L</kbd></p>

    <p>From Firefox 44:</p>

    <p><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>L</kbd></p>
   </td>
  </tr>
 </tbody>
</table>

<h3 id="Intérprete_da_linha_de_comando">Intérprete da linha de comando</h3>

<p>Estes atalhos aplicam-se quando estiver no <a href="/pt-PT/docs/Tools/Consola_da_Web#IIntérprete_da_linha_de_comando" title="/en-US/docs/Tools/Web_Console#The_command_line_interpreter">intérprete da linha de comando</a>.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Comando</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Scroll to start of console output (only if the command line is empty)</th>
   <td><kbd>Home</kbd></td>
   <td><kbd>Home</kbd></td>
   <td><kbd>Home</kbd></td>
  </tr>
  <tr>
   <th scope="row">Scroll to end of console output (only if the command line is empty)</th>
   <td><kbd>End</kbd></td>
   <td><kbd>End</kbd></td>
   <td><kbd>End</kbd></td>
  </tr>
  <tr>
   <th scope="row">Page up through console output</th>
   <td><kbd>Page up</kbd></td>
   <td><kbd>Page up</kbd></td>
   <td><kbd>Page up</kbd></td>
  </tr>
  <tr>
   <th scope="row">Page down through console output</th>
   <td><kbd>Page down</kbd></td>
   <td><kbd>Page down</kbd></td>
   <td><kbd>Page down</kbd></td>
  </tr>
  <tr>
   <th scope="row">Go backward through <a href="/en-US/docs/Tools/Web_Console#Command_history" title="/en-US/docs/Tools/Web_Console#Command_history">command history</a></th>
   <td><kbd>Up arrow</kbd></td>
   <td><kbd>Up arrow</kbd></td>
   <td><kbd>Up arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Go forward through command history</th>
   <td><kbd>Down arrow</kbd></td>
   <td><kbd>Down arrow</kbd></td>
   <td><kbd>Down arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Move to the beginning of the line</th>
   <td><kbd>Home</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>A</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>A</kbd></td>
  </tr>
  <tr>
   <th scope="row">Move to the end of the line</th>
   <td><kbd>End</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>E</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>E</kbd></td>
  </tr>
  <tr>
   <th scope="row">Execute the current expression</th>
   <td><kbd>Enter</kbd></td>
   <td><kbd>Return</kbd></td>
   <td><kbd>Enter</kbd></td>
  </tr>
  <tr>
   <th scope="row">Add a new line, for entering multiline expressions</th>
   <td><kbd>Shift</kbd> + <kbd>Enter</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Return</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>Enter</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Janela_de_Completar_Automaticamente">Janela de 'Completar Automaticamente'</h3>

<p>Este atalhos aplicam-se enquanto a <a href="/pt-PT/docs/Tools/Consola_da_Web">janela de completar automaticamente</a> estiver aberta:</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Comando</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Choose the current autocomplete suggestion</th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Cancel the autocomplete popup</th>
   <td><kbd>Escape</kbd></td>
   <td><kbd>Escape</kbd></td>
   <td><kbd>Escape</kbd></td>
  </tr>
  <tr>
   <th scope="row">Move to the previous autocomplete suggestion</th>
   <td><kbd>Up arrow</kbd></td>
   <td><kbd>Up arrow</kbd></td>
   <td><kbd>Up arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Move to the next autocomplete suggestion</th>
   <td><kbd>Down arrow</kbd></td>
   <td><kbd>Down arrow</kbd></td>
   <td><kbd>Down arrow</kbd></td>
  </tr>
  <tr>
   <th scope="row">Page up through autocomplete suggestions</th>
   <td><kbd>Page up</kbd></td>
   <td><kbd>Page up</kbd></td>
   <td><kbd>Page up</kbd></td>
  </tr>
  <tr>
   <th scope="row">Page down through autocomplete suggestions</th>
   <td><kbd>Page down</kbd></td>
   <td><kbd>Page down</kbd></td>
   <td><kbd>Page down</kbd></td>
  </tr>
  <tr>
   <th scope="row">Scroll to start of autocomplete suggestions</th>
   <td><kbd>Home</kbd></td>
   <td><kbd>Home</kbd></td>
   <td><kbd>Home</kbd></td>
  </tr>
  <tr>
   <th scope="row">Scroll to end of autocomplete suggestions</th>
   <td><kbd>End</kbd></td>
   <td><kbd>End</kbd></td>
   <td><kbd>End</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Editor_de_Estilo">Editor de Estilo</h2>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Comando</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Abrir o Editor de Estilo</th>
   <td><kbd>Shift</kbd> + <kbd>F7</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F7</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F7</kbd></td>
  </tr>
  <tr>
   <th scope="row">Abrir janela 'Completar Automaticamente'</th>
   <td><kbd>Ctrl</kbd> + <kbd>Space</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Space</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Space</kbd></td>
  </tr>
 </tbody>
</table>

<div id="scratchpad">
<h2 id="Scratchpad"><em>Scratchpad</em></h2>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Comando</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Open the Scratchpad</th>
   <td><kbd>Shift</kbd> + <kbd>F4</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F4</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>F4</kbd></td>
  </tr>
  <tr>
   <th scope="row">Run Scratchpad code</th>
   <td><kbd>Ctrl</kbd> + <kbd>R</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>R</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>R</kbd></td>
  </tr>
  <tr>
   <th scope="row">Run Scratchpad code, display the result in the <a href="/en-US/docs/Tools/Web_Console#Inspecting_objects" title="/en-US/docs/Tools/Web_Console#Inspecting_objects">object inspector</a></th>
   <td><kbd>Ctrl</kbd> + <kbd>I</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>I</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>I</kbd></td>
  </tr>
  <tr>
   <th scope="row">Run Scratchpad code, insert the result as a comment</th>
   <td><kbd>Ctrl</kbd> + <kbd>L</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>L</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>L</kbd></td>
  </tr>
  <tr>
   <th scope="row">Re-evaluate current function</th>
   <td><kbd>Ctrl</kbd> + <kbd>E</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>E</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>E</kbd></td>
  </tr>
  <tr>
   <th scope="row">Reload the current page, then run Scratchpad code</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>R</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>R</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>R</kbd></td>
  </tr>
  <tr>
   <th scope="row">Save the pad</th>
   <td><kbd>Ctrl</kbd> + <kbd>S</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>S</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>S</kbd></td>
  </tr>
  <tr>
   <th scope="row">Open an existing pad</th>
   <td><kbd>Ctrl</kbd> + <kbd>O</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>O</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>O</kbd></td>
  </tr>
  <tr>
   <th scope="row">Create a new pad</th>
   <td><kbd>Ctrl</kbd> + <kbd>N</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>N</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>N</kbd></td>
  </tr>
  <tr>
   <th scope="row">Close Scratchpad</th>
   <td><kbd>Ctrl</kbd> + <kbd>W</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>W</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>W</kbd></td>
  </tr>
  <tr>
   <th scope="row">Pretty print the code in Scratchpad</th>
   <td><kbd>Ctrl</kbd> + <kbd>P</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>P</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>P</kbd></td>
  </tr>
  <tr>
   <th scope="row">Show autocomplete suggestions</th>
   <td><kbd>Ctrl</kbd> + <kbd>Space</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Space</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Space</kbd></td>
  </tr>
  <tr>
   <th scope="row">Show inline documentation</th>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Space</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Space</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Space</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<div id="eyedropper">
<h2 id="Eyedropper"><em>Eyedropper</em></h2>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;"><strong>Comando</strong></th>
   <th scope="col"><strong>Windows</strong></th>
   <th scope="col"><strong>macOS</strong></th>
   <th scope="col"><strong>Linux</strong></th>
  </tr>
  <tr>
   <th scope="row">Selecionar a cor atual</th>
   <td><kbd>Enter</kbd></td>
   <td><kbd>Return</kbd></td>
   <td><kbd>Enter</kbd></td>
  </tr>
  <tr>
   <th scope="row">Rejeitar o <em>Eyedropper</em></th>
   <td><kbd>Escape</kbd></td>
   <td><kbd>Escape</kbd></td>
   <td><kbd>Escape</kbd></td>
  </tr>
  <tr>
   <th scope="row">Mover 1 píxel</th>
   <td><kbd>Arrow keys</kbd></td>
   <td><kbd>Arrow keys</kbd></td>
   <td><kbd>Arrow keys</kbd></td>
  </tr>
  <tr>
   <th scope="row">Mover 10 píxeis</th>
   <td><kbd>Shift</kbd> + <kbd>arrow keys</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>arrow keys</kbd></td>
   <td><kbd>Shift</kbd> + <kbd>arrow keys</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<div id="SL_balloon_obj" style="display: block;">
<div class="SL_ImTranslatorLogo" id="SL_button" style=""></div>

<div id="SL_shadow_translation_result2" style="display: none;"></div>

<div id="SL_shadow_translator" style="display: none;">
<div id="SL_planshet">
<div id="SL_arrow_up" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;"></div>

<div id="SL_Bproviders">
<div class="SL_BL_LABLE_ON" id="SL_P0" title="Google">G</div>

<div class="SL_BL_LABLE_ON" id="SL_P1" title="Microsoft">M</div>

<div class="SL_BL_LABLE_ON" id="SL_P2" title="Translator">T</div>
</div>

<div id="SL_alert_bbl" style="display: none;">
<div id="SLHKclose"></div>

<div id="SL_alert_cont"></div>
</div>

<div id="SL_TB">
<table id="SL_tables">
 <tbody>
  <tr>
   <td class="SL_td"><input></td>
   <td class="SL_td"><select><option value="auto">Detectar idioma</option><option value="af">Africâner</option><option value="sq">Albanês</option><option value="de">Alemão</option><option value="ar">Arabe</option><option value="hy">Armênio</option><option value="az">Azerbaijano</option><option value="eu">Basco</option><option value="bn">Bengali</option><option value="be">Bielo-russo</option><option value="my">Birmanês</option><option value="bs">Bósnio</option><option value="bg">Búlgaro</option><option value="ca">Catalão</option><option value="kk">Cazaque</option><option value="ceb">Cebuano</option><option value="ny">Chichewa</option><option value="zh-CN">Chinês (Simp)</option><option value="zh-TW">Chinês (Trad)</option><option value="si">Cingalês</option><option value="ko">Coreano</option><option value="ht">Crioulo haitiano</option><option value="hr">Croata</option><option value="da">Dinamarquês</option><option value="sk">Eslovaco</option><option value="sl">Esloveno</option><option value="es">Espanhol</option><option value="eo">Esperanto</option><option value="et">Estoniano</option><option value="fi">Finlandês</option><option value="fr">Francês</option><option value="gl">Galego</option><option value="cy">Galês</option><option value="ka">Georgiano</option><option value="el">Grego</option><option value="gu">Gujarati</option><option value="ha">Hauça</option><option value="iw">Hebraico</option><option value="hi">Hindi</option><option value="hmn">Hmong</option><option value="nl">Holandês</option><option value="hu">Húngaro</option><option value="ig">Igbo</option><option value="id">Indonésio</option><option value="en">Inglês</option><option value="yo">Ioruba</option><option value="ga">Irlandês</option><option value="is">Islandês</option><option value="it">Italiano</option><option value="ja">Japonês</option><option value="jw">Javanês</option><option value="kn">Kannada</option><option value="km">Khmer</option><option value="lo">Laosiano</option><option value="la">Latim</option><option value="lv">Letão</option><option value="lt">Lituano</option><option value="mk">Macedônico</option><option value="ml">Malaiala</option><option value="ms">Malaio</option><option value="mg">Malgaxe</option><option value="mt">Maltês</option><option value="mi">Maori</option><option value="mr">Marathi</option><option value="mn">Mongol</option><option value="ne">Nepalês</option><option value="no">Norueguês</option><option value="fa">Persa</option><option value="pl">Polonês</option><option value="pt">Português</option><option value="pa">Punjabi</option><option value="ro">Romeno</option><option value="ru">Russo</option><option value="sr">Sérvio</option><option value="st">Sesotho</option><option value="so">Somália</option><option value="sw">Suaíli</option><option value="su">Sudanês</option><option value="sv">Sueco</option><option value="tg">Tadjique</option><option value="tl">Tagalo</option><option value="th">Tailandês</option><option value="ta">Tâmil</option><option value="cs">Tcheco</option><option value="te">Telugo</option><option value="tr">Turco</option><option value="uk">Ucraniano</option><option value="ur">Urdu</option><option value="uz">Uzbeque</option><option value="vi">Vietnamita</option><option value="yi">Yiddish</option><option value="zu">Zulu</option></select></td>
   <td class="SL_td">
    <div id="SL_switch_b" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;" title="Alternar Idiomas"></div>
   </td>
   <td class="SL_td"><select><option value="af">Africâner</option><option value="sq">Albanês</option><option value="de">Alemão</option><option value="ar">Arabe</option><option value="hy">Armênio</option><option value="az">Azerbaijano</option><option value="eu">Basco</option><option value="bn">Bengali</option><option value="be">Bielo-russo</option><option value="my">Birmanês</option><option value="bs">Bósnio</option><option value="bg">Búlgaro</option><option value="ca">Catalão</option><option value="kk">Cazaque</option><option value="ceb">Cebuano</option><option value="ny">Chichewa</option><option value="zh-CN">Chinês (Simp)</option><option value="zh-TW">Chinês (Trad)</option><option value="si">Cingalês</option><option value="ko">Coreano</option><option value="ht">Crioulo haitiano</option><option value="hr">Croata</option><option value="da">Dinamarquês</option><option value="sk">Eslovaco</option><option value="sl">Esloveno</option><option value="es">Espanhol</option><option value="eo">Esperanto</option><option value="et">Estoniano</option><option value="fi">Finlandês</option><option value="fr">Francês</option><option value="gl">Galego</option><option value="cy">Galês</option><option value="ka">Georgiano</option><option value="el">Grego</option><option value="gu">Gujarati</option><option value="ha">Hauça</option><option value="iw">Hebraico</option><option value="hi">Hindi</option><option value="hmn">Hmong</option><option value="nl">Holandês</option><option value="hu">Húngaro</option><option value="ig">Igbo</option><option value="id">Indonésio</option><option selected value="en">Inglês</option><option value="yo">Ioruba</option><option value="ga">Irlandês</option><option value="is">Islandês</option><option value="it">Italiano</option><option value="ja">Japonês</option><option value="jw">Javanês</option><option value="kn">Kannada</option><option value="km">Khmer</option><option value="lo">Laosiano</option><option value="la">Latim</option><option value="lv">Letão</option><option value="lt">Lituano</option><option value="mk">Macedônico</option><option value="ml">Malaiala</option><option value="ms">Malaio</option><option value="mg">Malgaxe</option><option value="mt">Maltês</option><option value="mi">Maori</option><option value="mr">Marathi</option><option value="mn">Mongol</option><option value="ne">Nepalês</option><option value="no">Norueguês</option><option value="fa">Persa</option><option value="pl">Polonês</option><option value="pt">Português</option><option value="pa">Punjabi</option><option value="ro">Romeno</option><option value="ru">Russo</option><option value="sr">Sérvio</option><option value="st">Sesotho</option><option value="so">Somália</option><option value="sw">Suaíli</option><option value="su">Sudanês</option><option value="sv">Sueco</option><option value="tg">Tadjique</option><option value="tl">Tagalo</option><option value="th">Tailandês</option><option value="ta">Tâmil</option><option value="cs">Tcheco</option><option value="te">Telugo</option><option value="tr">Turco</option><option value="uk">Ucraniano</option><option value="ur">Urdu</option><option value="uz">Uzbeque</option><option value="vi">Vietnamita</option><option value="yi">Yiddish</option><option value="zu">Zulu</option></select></td>
   <td class="SL_td">
    <div id="SL_TTS_voice" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;" title="Ouça"></div>
   </td>
   <td class="SL_td">
    <div class="SL_copy" id="SL_copy" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;" title="Copiar"></div>
   </td>
   <td class="SL_td">
    <div id="SL_bbl_font_patch"></div>

    <div class="SL_bbl_font" id="SL_bbl_font" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;" title="Tamanho da fonte"></div>
   </td>
   <td class="SL_td">
    <div id="SL_bbl_help" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;" title="Ajuda"></div>
   </td>
   <td class="SL_td">
    <div class="SL_pin_off" id="SL_pin" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;" title="Fixar a janela de pop-up"></div>
   </td>
  </tr>
 </tbody>
</table>
</div>
</div>

<div id="SL_shadow_translation_result"></div>

<div class="SL_loading" id="SL_loading" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;"></div>

<div id="SL_player2"></div>

<div id="SL_alert100">A função de fala é limitada a 200 caracteres</div>

<div id="SL_Balloon_options" style="background: rgb(255, 255, 255)  repeat scroll 0% 0%;">
<div id="SL_arrow_down" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;"></div>

<table id="SL_tbl_opt" style="width: 100%;">
 <tbody>
  <tr>
   <td><input></td>
   <td>
    <div id="SL_BBL_IMG" style="background: rgba(0, 0, 0, 0)  repeat scroll 0% 0%;" title="Mostrar o botão do ImTranslator 3 segundos"></div>
   </td>
   <td><a class="SL_options" title="Mostrar opções">Opções</a> : <a class="SL_options" title="Histórico de tradução">Histórico</a> : <a class="SL_options" title="Comentários">Comentários</a> : <a class="SL_options" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GD9D8CPW8HFA2" title="Faça sua contribuição">Donate</a></td>
   <td><span id="SL_Balloon_Close" title="Encerrar">Encerrar</span></td>
  </tr>
 </tbody>
</table>
</div>
</div>
</div>
</div>