aboutsummaryrefslogtreecommitdiff
path: root/files/fr/tools/keyboard_shortcuts/index.html
blob: 0861359c77bb3cbd8bd1b75e4eae745aebd2dd55 (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
---
title: Raccourcis claviers
slug: Outils/Raccourcis_claviers
tags:
  - Tools
translation_of: Tools/Keyboard_shortcuts
---
<div>{{ToolsSidebar}}</div>

<p>Cette page liste tous les raccourcis clavier utilisés par les outils de développement intégrés à Firefox.</p>

<p>La première section liste les raccourcis utilisés pour ouvrir chaque outil. La deuxième section liste les raccourcis concernant la boîte à outils. Chaque section suivante concernera un outil et ses raccourcis dédiés.</p>

<p>Les raccourcis d'accessibilité, dépendants de la locale, ne sont pas documentés sur cette page.</p>

<h2 id="Ouvrir_et_fermer_les_outils">Ouvrir et fermer les outils</h2>

<p>Ces raccourcis fonctionnent dans la fenêtre principale du navigateur et permettent d'ouvrir un outil donné. Pour les outils situés dans la boîte à outils, ils permettent aussi de fermer l'outil si celui-ci est déjà ouvert. Pour les outils qui s'ouvrent dans une nouvelle fenêtre (tels que la console), vous devrez fermer la fenêtre pour fermer l'outil.</p>

<div class="blockIndicator note">
<p><strong>Note:</strong> Avant Firefox 66, la combinaison <kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>S</kbd> sur Windows et Linux ou <kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>S</kbd> sur macOS ouvrait/fermait le Débogueur. Depuis Firefox 66, ce n'est plus le cas.</p>
</div>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Boîte à outils (s'ouvre sur le dernier outil utilisé)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>I</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>I</kbd></td>
  </tr>
  <tr>
   <th scope="row">Mettre la Boîte à outils au premier plan (si la boite est ouverte dans une autre fenêtre qui n'est pas au premier plan)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</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>Maj</kbd> + <kbd>I</kbd> or <kbd>F12</kbd></td>
  </tr>
  <tr>
   <th scope="row">Fermer la Boîte à outils (si la boite est ouverte dans une fenêtre séparée et est au premier plan)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</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">Console Web<a href="#opening-closing-web-console-note"><strong><sup>1</sup></strong></a></th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>K</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>K</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>K</kbd></td>
  </tr>
  <tr>
   <th scope="row">Inspecteur</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>C</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>C</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>C</kbd></td>
  </tr>
  <tr>
   <th scope="row">Éditeur de style</th>
   <td><kbd>Maj</kbd> + <kbd>F7</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F7</kbd><a href="#mac-function-key-note" title="#mac-function-key-note"><sup>1</sup></a></td>
   <td><kbd>Maj</kbd> + <kbd>F7</kbd></td>
  </tr>
  <tr>
   <th scope="row">Profileur</th>
   <td><kbd>Maj</kbd> + <kbd>F5</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F5</kbd><a href="#mac-function-key-note" title="#mac-function-key-note"><sup>1</sup></a></td>
   <td><kbd>Maj</kbd> + <kbd>F5</kbd></td>
  </tr>
  <tr>
   <th scope="row">Réseau <a href="https://developer.mozilla.org/fr/docs/Outils/Raccourcis_claviers$edit#opening-closing-network-monitor-note"><strong><sup>2</sup></strong></a></th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>E</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>E</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>E</kbd></td>
  </tr>
  <tr>
   <th scope="row">Barre de développement (afficher/masquer)</th>
   <td><kbd>Maj</kbd> + <kbd>F2</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F2</kbd><a href="#mac-function-key-note" title="#mac-function-key-note"><sup>1</sup></a></td>
   <td><kbd>Maj</kbd> + <kbd>F2</kbd></td>
  </tr>
  <tr>
   <th scope="row">Vue adaptative (afficher/masquer)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>M</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>M</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>M</kbd></td>
  </tr>
  <tr>
   <th scope="row">Console du navigateur<a href="#opening-closing-browser-console-note"><sup>3</sup></a></th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>J</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>J</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>J</kbd></td>
  </tr>
  <tr>
   <th scope="row">Boite à outils du navigateur</th>
   <td><kbd>Ctrl</kbd> + <kbd>Alt</kbd> +<kbd>Maj</kbd> + <kbd>I</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> +<kbd>Maj</kbd> + <kbd>I</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Alt</kbd> +<kbd>Maj</kbd> + <kbd>I</kbd></td>
  </tr>
  <tr>
   <th scope="row">Ardoise JavaScript</th>
   <td><kbd>Maj</kbd> + <kbd>F4</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F4</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F4</kbd></td>
  </tr>
  <tr>
   <th scope="row">WebIDE</th>
   <td><kbd>Maj</kbd> + <kbd>F8</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F8</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F8</kbd></td>
  </tr>
  <tr>
   <th scope="row">Inspecteur de Stockage <a href="#disabled-tools-shortcut"><sup>4</sup></a></th>
   <td><kbd>Maj</kbd> + <kbd>F9</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F9</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F9</kbd></td>
  </tr>
 </tbody>
</table>

<p id="opening-closing-web-console-note">1. Contrairement aux autres outils de la boîte à outils, ce raccourci ne ferme pas également la console. Pour la console, cela passe le focus sur la ligne de commande de la console. Pour fermer la console, utilisez le raccourci global de la boîte à outils de <kbd>Ctrl + Maj + I</kbd> (<kbd>Cmd + Opt + I</kbd> sur Mac).</p>

<p>2. Avant Firefox 55 le raccourci était <kbd>Ctrl + Maj + Q</kbd> (<kbd>Cmd + Opt + Q</kbd> sur Mac).</p>

<p id="opening-closing-browser-console-note">3. Avant Firefox 38, quand la console du navigateur était cachée par une fenêtre de Firefox, le raccourci clavier fermait la console. Depuis Firefox 38, ce raccourci clavier met la console au premier plan.</p>

<p id="disabled-tools-shortcut">4. L'outil est désactivé par défaut. Le raccourci ne fonctionnera pas tant que l'outil n'aura pas été activé dans le panneau des Options des outils.</p>

<h2 id="Outils_de_développement">Outils de développement</h2>

<div id="toolbox-shortcuts">
<p>Ces raccourcis fonctionnent quand les outils sont ouverts, quel que soit l'outil sélectionné.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Faire défiler les outils de gauche à droite</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">Faire défiler les outils de droite à gauche</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">Alterner entre l'outil ouvert et les options</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>O</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Maj</kbd> + <kbd>O</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>O</kbd></td>
  </tr>
  <tr>
   <th scope="row">Alterner entre l'outil ouvert et les options (depuis Firefox 43)</th>
   <td><kbd>F1</kbd></td>
   <td><kbd>F1</kbd></td>
   <td><kbd>F1</kbd></td>
  </tr>
  <tr>
   <th scope="row">Alterner entre les deux derniers <a href="/fr/docs/Tools/Tools_Toolbox#Docking_mode">modes d'ancrages</a> (depuis Firefox 41)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>D</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Maj</kbd> + <kbd>D</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>D</kbd></td>
  </tr>
  <tr>
   <th scope="row">Activer la console scindée (sauf si l'outil sélectionné est la Console)</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>Ces raccourcis fonctionnent pour tous les outils dans la boîte à outils.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Augmenter la taille de la police</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">Diminuer la taille de la police</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">Réinitialiser la taille de la police</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="Éditeur_de_code_source">Éditeur de code source</h2>

<div id="source-editor">
<p>Cette liste présente les raccourcis par défaut pour l'éditeur de code source.</p>

<p>Dans les <a href="/fr/docs/Tools/Settings#Editor_Preferences">options de l'éditeur</a>, vous pouvez choisir d'utiliser les raccourcis Vim, Emacs, ou Sublime Text.</p>

<p>Pour les sélectionner, rendez-vous dans <code>about:config</code>, sélectionnez le paramètre <code>devtools.editor.keymap</code> et lui affecter la valeur « vim », « emacs », ou « sublime ». Ainsi, les commandes sélectionnées seront utilisées pour tous les outils de développement qui utilisent l'éditeur de source. Il vous faudra réouvrir l'éditeur pour que ce changement soit pris en compte.</p>

<p>A partir de Firefox 33, cette option est directement disponible dans la section des <a href="/fr/docs/Tools/Settings#Editor_Preferences">préférences de l'éditeur</a> dans le panneau « Options des outils » (plutôt que de passer par <code>about:config</code>).</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Aller à la ligne</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">Chercher dans le document</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">Chercher à nouveau</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">Tout sélectionner</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">Couper</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">Copier</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">Coller</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">Annuler</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">Rétablir</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>Z</kbd> / <kbd>Ctrl</kbd> + <kbd>Y</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Maj</kbd> + <kbd>Z</kbd> / <kbd>Cmd</kbd> + <kbd>Y</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>Z</kbd> / <kbd>Ctrl</kbd> + <kbd>Y</kbd></td>
  </tr>
  <tr>
   <th scope="row">Indenter</th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Désindenter</th>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Déplacer la/les ligne(s) vers le haut</th>
   <td><kbd>Alt</kbd> + <kbd>Haut</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Haut</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Déplacer la/les ligne(s) vers le bas</th>
   <td><kbd>Alt</kbd> + <kbd>Bas</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Bas</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Commenter/décommenter la/les ligne(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="Inspecteur_de_document">Inspecteur de document</h2>

<div id="page-inspector">
<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Ouvrir l'inspecteur</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>C</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>C</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>C</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Sélecteur_de_noeuds">Sélecteur de noeuds</h3>

<p>Ces raccourcis fonctionnent lorsque le <a href="https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector/How_to/Select_an_element#With_the_node_picker">sélecteur de noeuds</a> est actif.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Sélectioner l'élément en dessous de la souris et arrête la sélection</th>
   <td><kbd>Clic</kbd></td>
   <td><kbd>Clic</kbd></td>
   <td><kbd>Clic</kbd></td>
  </tr>
  <tr>
   <th scope="row">Sélectioner l'élément en dessous de la souris et continue la sélection</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="Onglet_HTML">Onglet HTML</h3>

<p>Ces raccourcis fonctionnent dans l'<a href="/fr/docs/Tools/Page_Inspector/How_to/Examine_and_edit_HTML" title="/fr/docs/Tools/Page_Inspector#HTML_pane">onglet HTML de l'inspecteur</a>.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Supprimer le nœud sélectionné</th>
   <td><kbd>Suppr</kbd></td>
   <td><kbd>Suppr</kbd></td>
   <td><kbd>Suppr</kbd></td>
  </tr>
  <tr>
   <th scope="row">Annuler la suppression d'un nœud</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">Rétablir la suppression d'un nœud</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>Z</kbd> / <kbd>Ctrl</kbd> + <kbd>Y</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Maj</kbd> + <kbd>Z</kbd> / <kbd>Cmd</kbd> + <kbd>Y</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>Z</kbd> / <kbd>Ctrl</kbd> + <kbd>Y</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller au prochain nœud (développe les nœuds uniquement)</th>
   <td><kbd>Flèche bas</kbd></td>
   <td><kbd>Flèche bas</kbd></td>
   <td><kbd>Flèche bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller au nœud précédent</th>
   <td><kbd>Flèche haut</kbd></td>
   <td><kbd>Flèche haut</kbd></td>
   <td><kbd>Flèche haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller au premier nœud dans l'arbre</th>
   <td><kbd>Début</kbd></td>
   <td><kbd>Début</kbd></td>
   <td><kbd>Début</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller au dernier nœud dans l'arbre</th>
   <td><kbd>Fin</kbd></td>
   <td><kbd>Fin</kbd></td>
   <td><kbd>Fin</kbd></td>
  </tr>
  <tr>
   <th scope="row">Développer le nœud actuellement sélectionné</th>
   <td><kbd>Flèche droite</kbd></td>
   <td><kbd>Flèche droite</kbd></td>
   <td><kbd>Flèche droite</kbd></td>
  </tr>
  <tr>
   <th scope="row">Réduire le nœud actuellement sélectionné</th>
   <td><kbd>Flèche gauche</kbd></td>
   <td><kbd>Flèche gauche</kbd></td>
   <td><kbd>Flèche gauche</kbd></td>
  </tr>
  <tr>
   <th scope="row">(Lorsqu'un nœud est sélectionné) Itérer parmi les attributs</th>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Retour</kbd></td>
   <td><kbd>Entrée</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défiler vers l'avant parmi les attributs du nœud</th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défiler vers l'arrière parmi les attributs du nœud</th>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">(Lorsqu'un nœud est sélectionné) Commencer à modifier l'attribut sélectionné</th>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Entrée</kbd></td>
  </tr>
  <tr>
   <th scope="row">Masquer/Afficher le nœud sélectionné</th>
   <td><kbd>H</kbd></td>
   <td><kbd>H</kbd></td>
   <td><kbd>H</kbd></td>
  </tr>
  <tr>
   <th scope="row">Focus sur le champs de recherche du panneau HTML</th>
   <td><kbd>Ctrl</kbd> + <kbd>F</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>F</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>F</kbd></td>
  </tr>
  <tr>
   <th scope="row">Éditer le code HTML</th>
   <td><kbd>F2</kbd></td>
   <td><kbd>F2</kbd></td>
   <td><kbd>F2</kbd></td>
  </tr>
  <tr>
   <th scope="row">Arrêter d'éditer le code HTML</th>
   <td><kbd>F2</kbd> / <kbd>Ctrl</kbd> +<kbd>Entrée</kbd></td>
   <td><kbd>F2</kbd> / <kbd>Cmd</kbd> +<kbd>Entrée</kbd></td>
   <td><kbd>F2</kbd> / <kbd>Ctrl</kbd> +<kbd>Entrée</kbd></td>
  </tr>
  <tr>
   <th scope="row">Copier l'extérieur du HTML du noeud sélectionné (depuis 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">Faire défiler jusqu'à ce que le noeud soit visible (depuis Firefox 44)</th>
   <td><kbd>S</kbd></td>
   <td><kbd>S</kbd></td>
   <td><kbd>S</kbd></td>
  </tr>
  <tr>
   <th scope="row">Trouver la prochaine occurrence dans le markup, lorsque que la recherche est active.</th>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Entrée</kbd></td>
  </tr>
  <tr>
   <th scope="row">Trouver l'occurrence précédente dans le markup, lorsque que la recherche est active (depuis Firefox 48).</th>
   <td><kbd>Maj</kbd> + <kbd>Entrée</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Entrée</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Entrée</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Fil_dariane">Fil d'ariane</h3>

<p>Ces raccourcis fonctionnent lorsque le <a href="/fr/docs/Tools/Page_Inspector/How_to/Examine_and_edit_HTML#HTML_breadcrumbs">fil d'Ariane</a> est sélectionné.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Aller à l'élément précédent dans le fil d'Ariane.</th>
   <td><kbd>Flèche gauche</kbd></td>
   <td><kbd>Flèche gauche</kbd></td>
   <td><kbd>Flèche gauche</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller à l'élément suivant dans le fil d'Ariane.</th>
   <td><kbd>Flèche droite</kbd></td>
   <td><kbd>Flèche droite</kbd></td>
   <td><kbd>Flèche droite</kbd></td>
  </tr>
  <tr>
   <th scope="row">Sélectionner le <a href="/fr/docs/Tools/Page_Inspector/UI_Tour#HTML_pane">panneau HTML</a></th>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Sélectionner le <a href="/fr/docs/Tools/Page_Inspector/UI_Tour#CSS_pane">panneau CSS</a></th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Onglet_CSS">Onglet CSS</h3>

<p>Ces raccourcis fonctionnent dans le <a href="/fr/docs/Tools/Page_Inspector/How_to/Examine_and_edit_CSS" title="/en-US/docs/Tools/Page_Inspector#CSS_pane">onglet CSS de l'Inspecteur</a>.</p>

<table class="fullwidth-table" style="height: 605px; width: 1074px;">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Sélectionner la barre de recherche dans la panneau CSS</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">Supprimer le contenu de la boite de recherche (seulement lorsque la boîte est sélectionnée, et contient du contenu)</th>
   <td><kbd>Echap</kbd></td>
   <td><kbd>Echap</kbd></td>
   <td><kbd>Echap</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défiler vers l'avant parmi les propriétés et les valeurs</th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défiler vers l'arrière parmi les propriétés et les valeurs</th>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Commencer à éditer une propriété ou une valeur (dans la vue des règles seulement quand une valeur est sélectionnée et n'a pas été éditée</th>
   <td><kbd>Entrée</kbd> ou <kbd>Espace</kbd></td>
   <td><kbd>Retour</kbd> ou <kbd>Espace</kbd></td>
   <td><kbd>Entrée</kbd> ou <kbd>Espace</kbd></td>
  </tr>
  <tr>
   <th scope="row">Itérer parmi les suggestions d'autocomplétion (dans la vue des règles, quand une valeur est en édition</th>
   <td><kbd>Flèche haut</kbd> , <kbd>Flèche bas</kbd></td>
   <td><kbd>Flèche haut</kbd> , <kbd>Flèche bas</kbd></td>
   <td><kbd>Flèche haut</kbd> , <kbd>Flèche bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Choisir la suggestion d'autocomplétion sélectionnée (dans les vues des règles, quand une propriété ou une valeur est en édition)</th>
   <td><kbd>Entrée</kbd> ou <kbd>Tab</kbd></td>
   <td><kbd>Retour</kbd> ou <kbd>Tab</kbd></td>
   <td><kbd>Entrée</kbd> ou <kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Incrémenter la valeur sélectionnée de 1</th>
   <td><kbd>Flèche Haut</kbd></td>
   <td><kbd>Flèche Haut</kbd></td>
   <td><kbd>Flèche Haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Décrémenter la valeur sélectionnée de 1</th>
   <td><kbd>Flèche Bas</kbd></td>
   <td><kbd>Flèche Bas</kbd></td>
   <td><kbd>Flèche Bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Incrémenter la valeur sélectionnée de 10</th>
   <td><kbd>Maj</kbd> + <kbd>Flèche Haut</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Flèche Haut</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Flèche Haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Décrémenter la valeur sélectionnée de 10</th>
   <td><kbd>Maj</kbd> + <kbd>Flèche Bas</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Flèche Bas</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Flèche Bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Incrémenter la valeur sélectionnée de 100</th>
   <td><kbd>Maj</kbd> + <kbd>Page Haut</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Page Haut</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Page Haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Décrémenter la valeur sélectionnée de 100</th>
   <td><kbd>Maj</kbd> + <kbd>Page Bas</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Page Bas</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Page Bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Incrémenter la valeur sélectionnée de 0.1</th>
   <td><kbd>Alt</kbd> + <kbd>Flèche Haut</kbd> (<kbd>Ctrl</kbd> + <kbd>Flèche Haut</kbd> depuis Firefox 60)</td>
   <td><kbd>Opt</kbd> + <kbd>Flèche Haut</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Flèche Haut</kbd> (<kbd>Ctrl</kbd> + <kbd>Flèche Haut depuis</kbd> Firefox 60)</td>
  </tr>
  <tr>
   <th scope="row">Décrémenter la valeur sélectionnée de 0.1</th>
   <td><kbd>Alt</kbd> + <kbd>Flèche Bas</kbd>(<kbd>Ctrl</kbd> + <kbd>Flèche Bas</kbd> depuis Firefox 60)</td>
   <td><kbd>Opt</kbd> + <kbd>Flèche Bas</kbd></td>
   <td><kbd>Alt</kbd> + <kbd>Flèche Bas</kbd> (<kbd>Ctrl</kbd> + <kbd>Flèche Bas</kbd> depuis Firefox 60)</td>
  </tr>
  <tr>
   <th scope="row">
    <p>Afficher/Masquer plus d'informations sur la propriété sélectionnée (vue "Calculé", quand une propriété est sélectionnée) (depuis Firefox 49)</p>
   </th>
   <td><kbd>Entrée</kbd> ou <kbd>Espace</kbd></td>
   <td><kbd>Entrée</kbd> ou <kbd>Espace</kbd></td>
   <td><kbd>Entrée</kbd> ou <kbd>Espace</kbd></td>
  </tr>
  <tr>
   <th scope="row">Ouvrir la page MDN concernant la propriété sélectionnée (vue "Calculé", quand une propriété est sélectionnée) (depuis Firefox 49)</th>
   <td><kbd>F1</kbd></td>
   <td><kbd>F1</kbd></td>
   <td><kbd>F1</kbd></td>
  </tr>
  <tr>
   <th scope="row">Ouvrir le fichier CSS sélectionnée (vue "Calculé", quand plus d'informations sont affichées pour une propriété et qu'un fichier CSS en référence est sélectionné) (depuis Firefox 49)</th>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Retour</kbd></td>
   <td><kbd>Entrée</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Débogueur">Débogueur</h2>

<div id="debugger">
<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Rechercher une chaine de caractères dans la source actuelle</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">Rechercher une chaine de caractères dans toutes les sources</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>F</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Maj</kbd> + <kbd>F</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>F</kbd></td>
  </tr>
  <tr>
   <th scope="row">Chercher le suivant dans la source actuelle</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">Rechercher les scripts par nom</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">Reprendre l'exécution depuis un point d'arrêt</th>
   <td><kbd>F8</kbd></td>
   <td><kbd>F8</kbd> <a href="https://developer.mozilla.org/fr/docs/Outils/Raccourcis_claviers$edit#mac-function-key-note" title="#mac-function-key-note"><sup>1</sup></a></td>
   <td><kbd>F8</kbd></td>
  </tr>
  <tr>
   <th scope="row">Passer la fonction</th>
   <td><kbd>F10</kbd></td>
   <td><kbd>F10</kbd> <a href="https://developer.mozilla.org/fr/docs/Outils/Raccourcis_claviers$edit#mac-function-key-note" title="#mac-function-key-note"><sup>1</sup></a></td>
   <td><kbd>F10</kbd></td>
  </tr>
  <tr>
   <th scope="row">Entrer dans la fonction</th>
   <td><kbd>F11</kbd></td>
   <td><kbd>F11</kbd> <sup><a href="https://developer.mozilla.org/fr/docs/Outils/Raccourcis_claviers$edit#mac-function-key-note" title="#mac-function-key-note">1</a></sup></td>
   <td><kbd>F11</kbd></td>
  </tr>
  <tr>
   <th scope="row">Sortir de la fonction</th>
   <td><kbd>Maj</kbd> + <kbd>F11</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F11</kbd> <sup><a href="https://developer.mozilla.org/fr/docs/Outils/Raccourcis_claviers$edit#mac-function-key-note" title="#mac-function-key-note">1</a></sup></td>
   <td><kbd>Maj</kbd> + <kbd>F11</kbd></td>
  </tr>
  <tr>
   <th scope="row">Ajouter/Supprimer un point d'arrêt sur la ligne sélectionnée</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">Ajouter/Supprimer un point d'arrêt conditionnel sur la ligne sélectionnée</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>B</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Maj</kbd> + <kbd>B</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>B</kbd></td>
  </tr>
 </tbody>
</table>

<p><a name="mac-function-key-note"></a>1. Sur certains Mac, les touches fonctions sont reconfigurées par défaut pour une fonction particulière, comme le réglage du volume ou de la luminosité. Consultez ce <a href="http://support.apple.com/kb/HT3399" title="http://sHautport.apple.com/kb/HT3399">guide pour utiliser ces touches comme des touches fonctions standards</a>. Pour utiliser une touche reconfigurée comme une touche standard, maintenir la touche fonction enfoncée (ainsi pour ouvrir le profileur, utiliser <kbd>Maj + Function + F5</kbd>).</p>

<div class="blockIndicator note">
<p><strong>Note:</strong> Avant Firefox 66, la combinaison <kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>S</kbd> sur Windows et Linux ou <kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>S</kbd> sur macOS ouvrait/fermait le Débogueur. Depuis Firefox 66, ce n'est plus le cas</p>
</div>
</div>

<h2 id="Console_Web">Console Web</h2>

<div id="web-console">
<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Ouvrir la console Web</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>K</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>K</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>K</kbd></td>
  </tr>
  <tr>
   <th scope="row">Rechercher le texte dans les messages de la console</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">Ouvrir le <a href="/fr/docs/Tools/Web_Console/Rich_output#Examining_object_properties" title="/en-US/docs/Tools/Web_Console/Rich_output#Examining_object_properties">panneau de l'inspecteur d'object</a></th>
   <td><kbd>Ctrl</kbd> + <kbd>Clic</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Clic</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Clic</kbd></td>
  </tr>
  <tr>
   <th scope="row">Fermer le <a href="/fr/docs/Tools/Web_Console/Rich_output#Examining_object_properties" title="/fr/docs/Tools/Web_Console#Inspecting_objects">panneau de l'inspecteur d'objet</a></th>
   <td><kbd>Échap</kbd></td>
   <td><kbd>Échap</kbd></td>
   <td><kbd>Échap</kbd></td>
  </tr>
  <tr>
   <th scope="row">Focus sur la ligne de commande</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>K</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>K</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>K</kbd></td>
  </tr>
  <tr>
   <th scope="row">Effacer les messages</th>
   <td>
    <p><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>L</kbd></p>
   </td>
   <td>
    <p><kbd>Cmd</kbd> + <kbd>L</kbd></p>

    <p>Depuis Firefox 67 :</p>

    <p><kbd>Cmd</kbd> + <kbd>K</kbd></p>
   </td>
   <td>
    <p><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>L</kbd></p>
   </td>
  </tr>
 </tbody>
</table>

<h3 id="Interpréteur_de_ligne_de_commande">Interpréteur de ligne de commande</h3>

<p>Ces raccourcis fonctionnent lorsque vous êtes dans al popup de <a href="/fr/docs/Tools/Web_Console/The_command_line_interpreter#Autocomplete" title="/en-US/docs/Tools/Web_Console#The_command_line_interpreter">l'interpréteur de ligne de commande</a>.</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Si la ligne de commande est vide : revenir au début des messages de la console</th>
   <td><kbd>Début</kbd></td>
   <td><kbd>Début</kbd></td>
   <td><kbd>Début</kbd></td>
  </tr>
  <tr>
   <th scope="row">Si la ligne de commande est vide : défile jusqu'à la fin des messages dans la console</th>
   <td><kbd>Fin</kbd></td>
   <td><kbd>Fin</kbd></td>
   <td><kbd>Fin</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défilement vers le haut de la sortie de la console</th>
   <td><kbd>Page Haut</kbd></td>
   <td><kbd>Page Haut</kbd></td>
   <td><kbd>Page Haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défilement vers le bas de la sortie de la console</th>
   <td><kbd>Page Bas</kbd></td>
   <td><kbd>Page Bas</kbd></td>
   <td><kbd>Page Bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Reculer dans l'<a href="/fr/docs/Tools/Web_Console/The_command_line_interpreter#Command_history" title="/en-US/docs/Tools/Web_Console#Command_history">historique des commandes</a></th>
   <td><kbd>Flèche Haut</kbd></td>
   <td><kbd>Flèche Haut</kbd></td>
   <td><kbd>Flèche Haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Avancer dans l'historique des commandes</th>
   <td><kbd>Flèche Bas</kbd></td>
   <td><kbd>Flèche Bas</kbd></td>
   <td><kbd>Flèche Bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Initie une recherche inverse dnas l'historiqueme des commandes/revient en arrière parmis les commandes correspondantes</th>
   <td><kbd>F9</kbd></td>
   <td><kbd>F9</kbd></td>
   <td><kbd>F9</kbd></td>
  </tr>
  <tr>
   <th scope="row">Itérer en avant parmis les commandes coresspondantes (après avoir initié une recherche inverse)</th>
   <td>  <kbd>Maj</kbd>+ <kbd>F9</kbd></td>
   <td>  <kbd>Maj</kbd>+ <kbd>F9</kbd></td>
   <td>  <kbd>Maj</kbd>+ <kbd>F9</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller au début de la ligne</th>
   <td><kbd>Début</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>A</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>A</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller à la fin de la ligne</th>
   <td><kbd>Fin</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>E</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>E</kbd></td>
  </tr>
  <tr>
   <th scope="row">Exécuter l'expression courante</th>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Retour</kbd></td>
   <td><kbd>Entrée</kbd></td>
  </tr>
  <tr>
   <th scope="row">Ajouter une nouvelle ligne, pour saisir des expressions multilignes</th>
   <td><kbd>Maj</kbd> + <kbd>Entrée</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Retour</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Entrée</kbd></td>
  </tr>
 </tbody>
</table>

<h3 id="Fenêtre_dauto-complétion">Fenêtre d'auto-complétion</h3>

<p>Ces raccourcis fonctionnent lorsque <a href="/fr/docs/Outils/Console_Web#Auto-complétion" title="/en-US/docs/Tools/Web_Console#Autocomplete">fenêtre d'auto-complétion</a> est ouvert :</p>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Choisir la suggestion d'auto-complétion courante</th>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
   <td><kbd>Tab</kbd></td>
  </tr>
  <tr>
   <th scope="row">Annuler la fenêtre d'auto-complétion</th>
   <td><kbd>Échap</kbd></td>
   <td><kbd>Échap</kbd></td>
   <td><kbd>Échap</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller à la précédente suggestion d'auto-complétion</th>
   <td><kbd>Flèche Haut</kbd></td>
   <td><kbd>Flèche Haut</kbd></td>
   <td><kbd>Flèche Haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Aller à la prochaine suggestion d'auto-complétion</th>
   <td><kbd>Flèche Bas</kbd></td>
   <td><kbd>Flèche Bas</kbd></td>
   <td><kbd>Flèche Bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défiler vers le haut dans les suggestions d'auto-complétion</th>
   <td><kbd>Page Haut</kbd></td>
   <td><kbd>Page Haut</kbd></td>
   <td><kbd>Page Haut</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défiler vers le bas dans les suggestions d'auto-complétion</th>
   <td><kbd>Page Bas</kbd></td>
   <td><kbd>Page Bas</kbd></td>
   <td><kbd>Page Bas</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défile jusqu'au début des suggestions d'auto-complétion (à partir de Firefox 34)</th>
   <td><kbd>Début</kbd></td>
   <td><kbd>Début</kbd></td>
   <td><kbd>Début</kbd></td>
  </tr>
  <tr>
   <th scope="row">Défile jusqu'à la fin des suggestions d'auto-complétion (à partir de Firefox 34)</th>
   <td><kbd>Fin</kbd></td>
   <td><kbd>Fin</kbd></td>
   <td><kbd>Fin</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Éditeur_de_style">Éditeur de style</h2>

<div id="Style_Editor">
<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Ouvrir l'Éditeur de style</th>
   <td><kbd>Maj</kbd> + <kbd>F7</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F7</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F7</kbd></td>
  </tr>
  <tr>
   <th scope="row">Ouvrir la fenêtre d'auto-complétion</th>
   <td><kbd>Ctrl</kbd> + <kbd>Espace</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Espace</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Espace</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<div id="scratchpad">
<h2 id="Ardoise_JavaScript">Ardoise JavaScript</h2>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Ouvrir l'Ardoise</th>
   <td><kbd>Maj</kbd> + <kbd>F4</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F4</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>F4</kbd></td>
  </tr>
  <tr>
   <th scope="row">Exécuter le code de l'Ardoise</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">Exécuter le code de l'Ardoise, afficher le résultat dans l'<a href="/fr/docs/Tools/Web_Console/Rich_output#Examining_object_properties">inspecteur d'objets</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">Exécuter le code de l'Ardoise, insérer le résultat en tant que commentaire</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">Réévaluer la fonction courante</th>
   <td><kbd>Ctrl</kbd> + <kbd>E</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>E</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>E</kbd></td>
  </tr>
  <tr>
   <th scope="row">Recharger le document courant puis exécuter le code de l'Ardoise</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>R</kbd></td>
   <td><kbd>Cmd</kbd> + <kbd>Maj</kbd> + <kbd>R</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>R</kbd></td>
  </tr>
  <tr>
   <th scope="row">Enregistrer le fichier</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">Ouvrir un fichier existant</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">Créer un nouveau fichier</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">Fermer l'Ardoise</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">Formater et indenter dans l'Ardoise</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">Afficher les suggestions d'auto-complétion (nouveauté de Firefox 32)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Espace</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Espace</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Espace</kbd></td>
  </tr>
  <tr>
   <th scope="row">Afficher la documentation intégrée (nouveauté de Firefox 32)</th>
   <td><kbd>Maj</kbd> + <kbd>Espace</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Espace</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Espace</kbd></td>
  </tr>
  <tr>
   <th scope="row">Afficher la documentation intégrée (à partir de Firefox 33)</th>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>Espace</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>Espace</kbd></td>
   <td><kbd>Ctrl</kbd> + <kbd>Maj</kbd> + <kbd>Espace</kbd></td>
  </tr>
 </tbody>
</table>
</div>

<div id="eyedropper">
<h2 id="Pipette">Pipette</h2>

<table class="fullwidth-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 40%;">Commande</th>
   <th scope="col">Windows</th>
   <th scope="col">macOS</th>
   <th scope="col">Linux</th>
  </tr>
  <tr>
   <th scope="row">Sélectionner la couleur courante</th>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Entrée</kbd></td>
   <td><kbd>Entrée</kbd></td>
  </tr>
  <tr>
   <th scope="row">Désactiver la pipette</th>
   <td><kbd>Échap</kbd></td>
   <td><kbd>Échap</kbd></td>
   <td><kbd>Échap</kbd></td>
  </tr>
  <tr>
   <th scope="row">Déplacer de 1 pixel</th>
   <td><kbd>Flèches</kbd></td>
   <td><kbd>Flèches</kbd></td>
   <td><kbd>Flèches</kbd></td>
  </tr>
  <tr>
   <th scope="row">Déplacer de 10 pixels</th>
   <td><kbd>Maj</kbd> + <kbd>Flèches</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Flèches</kbd></td>
   <td><kbd>Maj</kbd> + <kbd>Flèches</kbd></td>
  </tr>
 </tbody>
</table>
</div>