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
|
---
title: Sneltoetsen
slug: Tools/Keyboard_shortcuts
tags:
- Tools
- l10n:priority
translation_of: Tools/Keyboard_shortcuts
original_slug: Tools/Sneltoetsen
---
<p>Deze pagina vermeldt alle sneltoetsen voor de ontwikkelaarshulpmiddelen die in Firefox zijn ingebouwd.</p>
<p>De eerste sectie vermeldt de sneltoets voor het openen van elk hulpmiddel, de tweede sectie vermeldt sneltoetsen die van toepassing zijn op de Werkset zelf. Daarna volgt één sectie voor elk hulpmiddel waarin de sneltoetsen worden vermeld die u binnen dat hulpmiddel kunt gebruiken.</p>
<p>Omdat toegangstoetsen afhankelijk zijn van de locale, worden ze niet op deze pagina vermeld.</p>
<h2 id="Hulpmiddelen_openen_en_sluiten">Hulpmiddelen openen en sluiten</h2>
<p>Deze sneltoetsen werken in het hoofdbrowservenster voor het openen van het bepaalde hulpmiddel. Voor hulpmiddelen die door de Werkset worden verzorgd, werken ze voor het sluiten van het hulpmiddel als dit actief is. Voor hulpmiddelen zoals de Browserconsole die in een nieuw venster wordt geopend, moet u het venster sluiten om het hulpmiddel te sluiten.</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">Werkset openen (met het meest recente hulpmiddel geactiveerd)</th>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd></td>
</tr>
<tr>
<th scope="row">Werkset naar voorgrond brengen (als Werkset zich in een apart venster en niet op voorgrond bevindt)</th>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> of <kbd>F12</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd> of <kbd>F12</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> of <kbd>F12</kbd></td>
</tr>
<tr>
<th scope="row">Werkset sluiten (als Werkset zich in een apart venster en wel op voorgrond bevindt)</th>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> of <kbd>F12</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd> of <kbd>F12</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> of <kbd>F12</kbd></td>
</tr>
<tr>
<th scope="row">Webconsole openen <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">Inspector in-/uitschakelen</th>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd></td>
</tr>
<tr>
<th scope="row">Debugger openen</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">Stijleditor openen</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"><sup>1</sup></a></td>
<td><kbd>Shift</kbd> + <kbd>F7</kbd></td>
</tr>
<tr>
<th scope="row">Profiler openen</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"><sup>1</sup></a></td>
<td><kbd>Shift</kbd> + <kbd>F5</kbd></td>
</tr>
<tr>
<th scope="row">Networkmonitor openen</th>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Q</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>Q</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Q</kbd></td>
</tr>
<tr>
<th scope="row">Ontwikkelaarswerkbalk in-/uitschakelen</th>
<td><kbd>Shift</kbd> + <kbd>F2</kbd></td>
<td><kbd>Shift</kbd> + <kbd>F2</kbd> <a href="#mac-function-key-note" title="#mac-function-key-note"><sup>1</sup></a></td>
<td><kbd>Shift</kbd> + <kbd>F2</kbd></td>
</tr>
<tr>
<th scope="row">Responsive Design-weergave in-/uitschakelen</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">Browserconsole openen <a href="#opening-closing-browser-console-note"><sup>2</sup></a></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">Browserwerkset openen</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">Kladblok openen</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">WebIDE openen</th>
<td><kbd>Shift</kbd> + <kbd>F8</kbd></td>
<td><kbd>Shift</kbd> + <kbd>F8</kbd></td>
<td><kbd>Shift</kbd> + <kbd>F8</kbd></td>
</tr>
<tr>
<th scope="row">Opslag-inspector <a href="#disabled-tools-shortcut"><sup>3</sup></a></th>
<td><kbd>Shift</kbd> + <kbd>F9</kbd></td>
<td><kbd>Shift</kbd> + <kbd>F9</kbd></td>
<td><kbd>Shift</kbd> + <kbd>F9</kbd></td>
</tr>
</tbody>
</table>
<p><a name="opening-closing-web-console-note">1. In tegenstelling tot de andere door de werkset verzorgde hulpmiddelen sluit deze sneltoets niet tevens de Webconsole. In plaats daarvan wordt hierdoor de focus op de opdrachtregel van de Webconsole gelegd. Gebruik de algemene werksetsneltoets <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> (<kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd> op een Mac) om de Webconsole te sluiten.</a></p>
<p><a id="opening-closing-browser-console-note" name="opening-closing-browser-console-note">2. Tot aan Firefox 38 sloot, wanneer de Browserconsole was verborgen door een normaal Firefox-venster, dezelfde toetscombinatie de Browserconsole. In Firefox 38 en hoger brengt, als de Browserconsole wordt verborgen door een normaal Firefox-venster, deze sneltoetscombinatie de Browserconsole weer op de voorgrond en wordt hier de focus op gelegd.</a></p>
<p><a href="/nl/docs/Tools_Toolbox#Settings" name="disabled-tools-shortcut">3. Het hulpmiddel is standaard uitgeschakeld, dus de sneltoets zou niet werken voordat deze is ingeschakeld vanuit het paneel Instellingen.</a></p>
<h2 id="Werkset">Werkset</h2>
<div id="toolbox-shortcuts">
<p>Deze sneltoetsen werken zolang de werkset is geopend, ongeacht welk hulpmiddel actief is.</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">Door hulpmiddelen stappen van links naar rechts</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">Door hulpmiddelen stappen van rechts naar links</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>Wisselen tussen actief hulpmiddel en instellingen</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">Wisselen tussen actief hulpmiddel en instellingen (nieuw 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>Werkset wisselen tussen de laatste 2 <a href="/nl/docs/Tools/Tools_Toolbox#Docking_mode">dockingmodi</a> (nieuw 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">Gesplitste console in-/uitschakelen (behalve als console het huidige geselecteerde hulpmiddel is)</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>Deze sneltoetsen werken in alle hulpmiddelen die door de werkset worden verzorgd.</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">Lettergrootte vergroten</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">Lettergrootte verkleinen</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">Lettergrootte herinitialiseren</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="Broneditor">Broneditor</h2>
<div id="source-editor">
<p>Deze tabel vermeldt de standaardsneltoetsen voor de broneditor.</p>
<p>In de sectie <a href="/nl/docs/Tools/Tools_Toolbox#Editor_Preferences">Editorvoorkeuren</a> van de instellingen voor de ontwikkelaarshulpmiddelen kunt u in plaats daarvan kiezen voor het gebruik van sneltoetsen van Vim, Emacs of Sublime Text.</p>
<p>Bezoek <code>about:config</code>, selecteer de instelling <code>devtools.editor.keymap</code> en wijs ‘vim’, ‘emacs’ of ‘sublime’ toe aan die instelling om deze sneltoetsen te selecteren. Als u dit doet, worden de geselecteerde toetsen gebruikt voor alle ontwikkelaarshulpmiddelen die de broneditor gebruiken. U dient de editor opnieuw te openen om de wijziging van kracht te laten worden.</p>
<p>Vanaf Firefox 33 en hoger is de sneltoetsvoorkeur zichtbaar in de sectie <a href="/nl/docs/Tools/Tools_Toolbox#Editor_Preferences">Editorvoorkeuren</a> van de instellingen voor de ontwikkelaarshulpmiddelen, en kunt u dit daar instellen in plaats van via <code>about:config</code>.</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">Naar regel gaan</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">Zoeken in bestand</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">Opnieuw zoeken</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">Alles selecteren</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">Knippen</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">Kopiëren</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">Plakken</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">Ongedaan maken</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">Opnieuw uitvoeren</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">Inspringen</th>
<td><kbd>Tab</kbd></td>
<td><kbd>Tab</kbd></td>
<td><kbd>Tab</kbd></td>
</tr>
<tr>
<th scope="row">Inspringen ongedaan maken</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">Regel(s) omhoog verplaatsen</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">Regel(s) omlaag verplaatsen</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">Regel(s) van opmerking voorzien/ontdoen</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="Pagina-inspector">Pagina-inspector</h2>
<div id="page-inspector">
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">Element inspecteren</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="HTML-paneel">HTML-paneel</h3>
<p>Deze sneltoetsen werken terwijl u zich in het <a href="/nl/docs/Tools/Page_Inspector/How_to/Examine_and_edit_HTML" title="/nl/docs/Tools/Page_Inspector#HTML_pane">HTML-paneel van de Inspector</a> bevindt.</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">De geselecteerde node verwijderen</th>
<td><kbd>Delete</kbd></td>
<td><kbd>Delete</kbd></td>
<td><kbd>Delete</kbd></td>
</tr>
<tr>
<th scope="row">Verwijderen van een node ongedaan maken</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">Verwijderen van een node opnieuw uitvoeren</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">Verder naar volgende node (alleen uitgevouwen nodes)</th>
<td><kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omlaag</kbd></td>
</tr>
<tr>
<th scope="row">Terug naar vorige node</th>
<td><kbd>Pijl omhoog</kbd></td>
<td><kbd>Pijl omhoog</kbd></td>
<td><kbd>Pijl omhoog</kbd></td>
</tr>
<tr>
<th scope="row">Huidige geselecteerde node uitvouwen</th>
<td><kbd>Pijl naar rechts</kbd></td>
<td><kbd>Pijl naar rechts</kbd></td>
<td><kbd>Pijl naar rechts</kbd></td>
</tr>
<tr>
<th scope="row">Huidige geselecteerde node samenvouwen</th>
<td><kbd>Pijl naar rechts</kbd></td>
<td><kbd>Pijl naar rechts</kbd></td>
<td><kbd>Pijl naar rechts</kbd></td>
</tr>
<tr>
<th scope="row">Vooruit stappen door de attributen van een node</th>
<td><kbd>Tab</kbd></td>
<td><kbd>Tab</kbd></td>
<td><kbd>Tab</kbd></td>
</tr>
<tr>
<th scope="row">Terug stappen door de attributen van een 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">Beginnen met bewerken van het geselecteerde attribuut</th>
<td><kbd>Enter</kbd></td>
<td><kbd>Return</kbd></td>
<td><kbd>Enter</kbd></td>
</tr>
<tr>
<th scope="row">De geselecteerde node verbergen/tonen</th>
<td><kbd>H</kbd></td>
<td><kbd>H</kbd></td>
<td><kbd>H</kbd></td>
</tr>
<tr>
<th scope="row">Focus op het zoekveld in het HTML-paneel leggen</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">Bewerken als HTML</th>
<td><kbd>F2</kbd></td>
<td><kbd>F2</kbd></td>
<td><kbd>F2</kbd></td>
</tr>
<tr>
<th scope="row">De buitenste HTML van de geselecteerde node kopiëren (nieuw 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">De geselecteerde node scrollen in weergave (nieuw in Firefox 44)</th>
<td><kbd>S</kbd></td>
<td><kbd>S</kbd></td>
<td><kbd>S</kbd></td>
</tr>
<tr>
<th scope="row">De volgende overeenkomst in de opmaak zoeken, als zoeken actief is</th>
<td><kbd>Enter</kbd></td>
<td><kbd>Return</kbd></td>
<td><kbd>Enter</kbd></td>
</tr>
<tr>
<th scope="row">De vorige overeenkomst in de opmaak zoeken, als zoeken actief is (nieuw in Firefox 48)</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="CSS-paneel">CSS-paneel</h3>
<p>Deze sneltoetsen werken wanneer u zich in het <a href="/nl/docs/Tools/Page_Inspector/How_to/Examine_and_edit_CSS" title="/nl/docs/Tools/Page_Inspector#CSS_pane">CSS-paneel van de Inspector</a> bevindt.</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">Focus op het zoekveld in het CSS-paneel leggen</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">Inhoud van zoekveld wissen (alleen wanneer focus op het zoekveld ligt, en inhoud is ingevoerd)</th>
<td><kbd>Esc</kbd></td>
<td><kbd>Esc</kbd></td>
<td><kbd>Esc</kbd></td>
</tr>
<tr>
<th scope="row">Vooruit stappen door eigenschappen en waarden</th>
<td><kbd>Tab</kbd></td>
<td><kbd>Tab</kbd></td>
<td><kbd>Tab</kbd></td>
</tr>
<tr>
<th scope="row">Terug stappen door eigenschappen en waarden</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">Beginnen met bewerken van eigenschap of waarde (alleen weergave Regels, wanneer een eigenschap of waarde is geselecteerd, maar nog niet wordt bewerkt)</th>
<td><kbd>Enter</kbd> of <kbd>Spatie</kbd></td>
<td><kbd>Return</kbd> of <kbd>Spatie</kbd></td>
<td><kbd>Enter</kbd> of <kbd>Spatie</kbd></td>
</tr>
<tr>
<th scope="row">Omhoog en omlaag bewegen tussen suggesties voor automatisch aanvullen (alleen weergave Regels, wanneer een eigenschap of waarde wordt bewerkt)</th>
<td><kbd>Pijl omhoog</kbd> , <kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omhoog</kbd> , <kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omhoog</kbd> , <kbd>Pijl omlaag</kbd></td>
</tr>
<tr>
<th scope="row">Huidige suggestie voor automatisch aanvullen kiezen (alleen weergave Regels, wanneer een eigenschap of waarde wordt bewerkt)</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">Geselecteerde waarde met 1 verhogen</th>
<td><kbd>Pijl omhoog</kbd></td>
<td><kbd>Pijl omhoog</kbd></td>
<td><kbd>Pijl omhoog</kbd></td>
</tr>
<tr>
<th scope="row">Geselecteerde waarde met 1 verlagen</th>
<td><kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omlaag</kbd></td>
</tr>
<tr>
<th scope="row">Geselecteerde waarde met 100 verhogen</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">Geselecteerde waarde met 100 verlagen</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">Geselecteerde waarde met 10 verhogen</th>
<td><kbd>Shift</kbd> + <kbd>Pijl omhoog</kbd></td>
<td><kbd>Shift</kbd> + <kbd>Pijl omhoog</kbd></td>
<td><kbd>Shift</kbd> + <kbd>Pijl omhoog</kbd></td>
</tr>
<tr>
<th scope="row">Geselecteerde waarde met 10 verlagen</th>
<td><kbd>Shift</kbd> + <kbd>Pijl omlaag</kbd></td>
<td><kbd>Shift</kbd> + <kbd>Pijl omlaag</kbd></td>
<td><kbd>Shift</kbd> + <kbd>Pijl omlaag</kbd></td>
</tr>
<tr>
<th scope="row">Geselecteerde waarde met 0,1 verhogen</th>
<td><kbd>Alt</kbd> + <kbd>Pijl omhoog</kbd></td>
<td><kbd>Opt</kbd> + <kbd>Pijl omhoog</kbd></td>
<td><kbd>Alt</kbd> + <kbd>Pijl omhoog</kbd></td>
</tr>
<tr>
<th scope="row">Geselecteerde waarde met 0,1 verlagen</th>
<td><kbd>Alt</kbd> + <kbd>Pijl omlaag</kbd></td>
<td><kbd>Opt</kbd> + <kbd>Pijl omlaag</kbd></td>
<td><kbd>Alt</kbd> + <kbd>Pijl omlaag</kbd></td>
</tr>
<tr>
<th scope="row">Meer informatie over huidige eigenschap tonen/verbergen (alleen weergave Berekend, wanneer een eigenschap is geselecteerd, nieuw in Firefox 49)</th>
<td><kbd>Enter</kbd> of <kbd>Spatie</kbd></td>
<td><kbd>Return</kbd> of <kbd>Spatie</kbd></td>
<td><kbd>Enter</kbd> of <kbd>Spatie</kbd></td>
</tr>
<tr>
<th scope="row">MDN-referentiepagina over huidige eigenschap openen (alleen weergave Berekend, wanneer een eigenschap is geselecteerd, nieuw in Firefox 49)</th>
<td><kbd>F1</kbd></td>
<td><kbd>F1</kbd></td>
<td><kbd>F1</kbd></td>
</tr>
<tr>
<th scope="row">Huidige CSS-bestand openen in Stijleditor (alleen weergave Berekend, wanneer meer informatie over een eigenschap wordt getoond en focus op een CSS-bestandsreferentie ligt, nieuw 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="Debugger">Debugger</h2>
<div id="debugger">
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">De Debugger openen</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">Zoeken in de huidige bron via het <a href="/nl/docs/Tools/Debugger/How_to/Search_and_filter" title="/nl/docs/Tools/Debugger/How_to/Search_and_filter">scriptfilter</a></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">Volgende zoeken in de huidige bron</th>
<td><kbd>Enter</kbd> / <kbd>Pijl omhoog</kbd></td>
<td><kbd>Return</kbd> / <kbd>Pijl omhoog</kbd></td>
<td><kbd>Enter</kbd> / <kbd>Pijl omhoog</kbd></td>
</tr>
<tr>
<th scope="row">Vorige zoeken in de huidige bron</th>
<td><kbd>Shift</kbd> + <kbd>Enter</kbd> / <kbd>Pijl omlaag</kbd></td>
<td><kbd>Shift</kbd> + <kbd>Return</kbd> / <kbd>Pijl omlaag</kbd></td>
<td><kbd>Shift</kbd> + <kbd>Enter</kbd> / <kbd>Pijl omlaag</kbd></td>
</tr>
<tr>
<th scope="row">Zoeken in alle bronnen via het <a href="/nl/docs/Tools/Debugger/How_to/Search_and_filter" title="/nl/docs/Tools/Debugger/How_to/Search_and_filter">scriptfilter</a></th>
<td><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>F</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>F</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>F</kbd></td>
</tr>
<tr>
<th scope="row">Zoeken naar scripts op naam</th>
<td><kbd>Ctrl</kbd> + <kbd>P</kbd> / <kbd>Ctrl</kbd> + <kbd>O</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>P</kbd> / <kbd>Ctrl</kbd> + <kbd>O</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>P</kbd> / <kbd>Ctrl</kbd> + <kbd>O</kbd></td>
</tr>
<tr>
<th scope="row">Zoeken naar functiedefinities</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">Variabelen filteren bij gepauzeerde uitvoering</th>
<td><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>V</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>V</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>V</kbd></td>
</tr>
<tr>
<th scope="row">Uitvoering hervatten bij een 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">Overslaan</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">Instappen</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">Uitstappen</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>
<tr>
<th scope="row">Breakpoint op de huidige geselecteerde regel in-/uitschakelen</th>
<td><kbd>Ctrl</kbd> + <kbd>B</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>B</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>B</kbd></td>
</tr>
<tr>
<th scope="row">Voorwaardelijk breakpoint op de huidige geselecteerde regel in-/uitschakelen</th>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>B</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>B</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>B</kbd></td>
</tr>
<tr>
<th scope="row">Geselecteerde tekst aan Watch-expressies toevoegen</th>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>E</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>E</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>E</kbd></td>
</tr>
<tr>
<th scope="row">Naar regel gaan via het <a href="/nl/docs/Tools/Debugger/How_to/Search_and_filter" title="/nl/docs/Tools/Debugger/How_to/Search_and_filter">scriptfilter</a></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">Zoeken via het <a href="/nl/docs/Tools/Debugger/How_to/Search_and_filter" title="/nl/docs/Tools/Debugger/How_to/Search_and_filter">scriptfilter</a></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">In het <a href="/nl/docs/Tools/Debugger/UI_Tour#Source_pane">bronpaneel</a> naar een functiedefinitie springen (nieuw in Firefox 44)</th>
<td><kbd>Ctrl</kbd> + klikken</td>
<td><kbd>Cmd</kbd> + klikken</td>
<td><kbd>Ctrl</kbd> + klikken</td>
</tr>
</tbody>
</table>
<p><a name="mac-function-key-note">1. Standaard is op sommige Macs de functietoets anders toegewezen voor het gebruik van een speciale functie: bijvoorbeeld voor het wijzigen van de schermhelderheid of het volume. Bekijk hiervoor deze </a><a href="http://support.apple.com/kb/HT3399" title="http://support.apple.com/kb/HT3399">handleiding voor het gebruik van deze toetsen als standaard functietoetsen</a>. Houd ook de functietoets ingedrukt om een anders toegewezen toets als een standaard functietoets te gebruiken (gebruik dus <kbd>Shift</kbd> + <kbd>Functie</kbd> + <kbd>F5</kbd> om de Profiler te openen).</p>
</div>
<h2 id="Webconsole">Webconsole</h2>
<div id="web-console">
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">De Webconsole openen</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">Zoeken in het berichtweergavepaneel</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">Het <a href="/nl/docs/Tools/Web_Console#Inspecting_objects" title="/nl/docs/Tools/Web_Console#Inspecting_objects">object-inspector-paneel</a> wissen</th>
<td><kbd>Escape</kbd></td>
<td><kbd>Escape</kbd></td>
<td><kbd>Escape</kbd></td>
</tr>
<tr>
<th scope="row">Focus op de opdrachtregel leggen</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">Uitvoer wissen</th>
<td>
<p><kbd>Ctrl</kbd> + <kbd>L</kbd></p>
<p>Vanaf 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>Vanaf Firefox 44:</p>
<p><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>L</kbd></p>
</td>
</tr>
</tbody>
</table>
<h3 id="Opdrachtregel-interpreter">Opdrachtregel-interpreter</h3>
<p>Deze sneltoetsen zijn van toepassing wanneer u zich in de <a href="/nl/docs/Tools/Web_Console#The_command_line_interpreter" title="/nl/docs/Tools/Web_Console#The_command_line_interpreter">opdrachtregel-interpreter</a> bevindt.</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">Scrollen naar begin van console-uitvoer (alleen als de opdrachtregel leeg is)</th>
<td><kbd>Home</kbd></td>
<td><kbd>Home</kbd></td>
<td><kbd>Home</kbd></td>
</tr>
<tr>
<th scope="row">Scrollen naar einde van console-uitvoer (alleen als de opdrachtregel leeg is)</th>
<td><kbd>End</kbd></td>
<td><kbd>End</kbd></td>
<td><kbd>End</kbd></td>
</tr>
<tr>
<th scope="row">Pagina omhoog door console-uitvoer</th>
<td><kbd>Page up</kbd></td>
<td><kbd>Page up</kbd></td>
<td><kbd>Page up</kbd></td>
</tr>
<tr>
<th scope="row">Pagina omlaag door console-uitvoer</th>
<td><kbd>Page down</kbd></td>
<td><kbd>Page down</kbd></td>
<td><kbd>Page down</kbd></td>
</tr>
<tr>
<th scope="row">Teruggaan door <a href="/nl/docs/Tools/Web_Console#Command_history" title="/nl/docs/Tools/Web_Console#Command_history">opdrachtgeschiedenis</a></th>
<td><kbd>Pijl omhoog</kbd></td>
<td><kbd>Pijl omhoog</kbd></td>
<td><kbd>Pijl omhoog</kbd></td>
</tr>
<tr>
<th scope="row">Vooruit gaan door opdrachtgeschiedenis</th>
<td><kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omlaag</kbd></td>
</tr>
<tr>
<th scope="row">Naar het begin van de regel springen</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">Naar het einde van de regel springen</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">De huidige expressie uitvoeren</th>
<td><kbd>Enter</kbd></td>
<td><kbd>Return</kbd></td>
<td><kbd>Enter</kbd></td>
</tr>
<tr>
<th scope="row">Een nieuwe regel toevoegen, voor het invoeren van meerregelige expressies</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="Pop-up_voor_automatisch_aanvullen">Pop-up voor automatisch aanvullen</h3>
<p>Deze sneltoetsen zijn van toepassing terwijl de <a href="/nl/docs/Tools/Web_Console#Autocomplete">pop-up voor automatisch aanvullen</a> is geopend:</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">De huidige suggestie voor automatisch aanvullen kiezen</th>
<td><kbd>Tab</kbd></td>
<td><kbd>Tab</kbd></td>
<td><kbd>Tab</kbd></td>
</tr>
<tr>
<th scope="row">De pop-up voor automatisch aanvullen annuleren</th>
<td><kbd>Escape</kbd></td>
<td><kbd>Escape</kbd></td>
<td><kbd>Escape</kbd></td>
</tr>
<tr>
<th scope="row">Naar de vorige suggestie voor automatisch aanvullen springen</th>
<td><kbd>Pijl omhoog</kbd></td>
<td><kbd>Pijl omhoog</kbd></td>
<td><kbd>Pijl omhoog</kbd></td>
</tr>
<tr>
<th scope="row">Naar de volgende suggestie voor automatisch aanvullen springen</th>
<td><kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omlaag</kbd></td>
<td><kbd>Pijl omlaag</kbd></td>
</tr>
<tr>
<th scope="row">Pagina omhoog door suggesties voor automatisch aanvullen</th>
<td><kbd>Page up</kbd></td>
<td><kbd>Page up</kbd></td>
<td><kbd>Page up</kbd></td>
</tr>
<tr>
<th scope="row">Pagina omlaag door suggesties voor automatisch aanvullen</th>
<td><kbd>Page down</kbd></td>
<td><kbd>Page down</kbd></td>
<td><kbd>Page down</kbd></td>
</tr>
<tr>
<th scope="row">Scrollen naar begin van suggesties voor automatisch aanvullen</th>
<td><kbd>Home</kbd></td>
<td><kbd>Home</kbd></td>
<td><kbd>Home</kbd></td>
</tr>
<tr>
<th scope="row">Scrollen naar einde van suggesties voor automatisch aanvullen</th>
<td><kbd>End</kbd></td>
<td><kbd>End</kbd></td>
<td><kbd>End</kbd></td>
</tr>
</tbody>
</table>
</div>
<h2 id="Stijleditor">Stijleditor</h2>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">De Stijleditor openen</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">Pop-up voor automatisch aanvullen openen</th>
<td><kbd>Ctrl</kbd> + <kbd>Spatie</kbd></td>
<td><kbd>Cmd</kbd> + <kbd>Spatie</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Spatie</kbd></td>
</tr>
</tbody>
</table>
<div id="scratchpad">
<h2 id="Kladblok">Kladblok</h2>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">Het Kladblok openen</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">Kladbok-code uitvoeren</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">Kladblok-code uitvoeren, het resultaat in de <a href="/nl/docs/Tools/Web_Console#Inspecting_objects" title="/nl/docs/Tools/Web_Console#Inspecting_objects">object-inspector</a> weergeven</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">Kladblok-code uitvoeren,het resultaat als een opmerking invoegen</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">Huidige functie opnieuw evalueren</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">De huidige pagina laden, daarna Kladblok-code uitvoeren</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">Het blok opslaan</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">Een bestaand blok openen</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">Een nieuw blok maken</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">Kladblok sluiten</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">De code ‘prettyprinten’ in Kladblok</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">Suggesties voor automatisch aanvullen tonen</th>
<td><kbd>Ctrl</kbd> + <kbd>Spatie</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Spatie</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Spatie</kbd></td>
</tr>
<tr>
<th scope="row">Inlinedocumentatie tonen</th>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Spatie</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Spatie</kbd></td>
<td><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Spatie</kbd></td>
</tr>
</tbody>
</table>
</div>
<div id="eyedropper">
<h2 id="Eyedropper">Eyedropper</h2>
<table class="fullwidth-table">
<tbody>
<tr>
<th scope="row" style="width: 40%;">Opdracht</th>
<th scope="col">Windows</th>
<th scope="col">OS X</th>
<th scope="col">Linux</th>
</tr>
<tr>
<th scope="row">De huidige kleur selecteren</th>
<td><kbd>Enter</kbd></td>
<td><kbd>Return</kbd></td>
<td><kbd>Enter</kbd></td>
</tr>
<tr>
<th scope="row">De Eyedropper sluiten</th>
<td><kbd>Escape</kbd></td>
<td><kbd>Escape</kbd></td>
<td><kbd>Escape</kbd></td>
</tr>
<tr>
<th scope="row">Verplaatsen per 1 pixel</th>
<td><kbd>Pijltoetsen</kbd></td>
<td><kbd>Pijltoetsen</kbd></td>
<td><kbd>Pijltoetsen</kbd></td>
</tr>
<tr>
<th scope="row">Verplaatsen per 10 pixels</th>
<td><kbd>Shift</kbd> + <kbd>pijltoetsen</kbd></td>
<td><kbd>Shift</kbd> + <kbd>pijltoetsen</kbd></td>
<td><kbd>Shift</kbd> + <kbd>pijltoetsen</kbd></td>
</tr>
</tbody>
</table>
</div>
|