emacs raccourcis pour commenter Ctrl+/

emacs raccourcis pour commenter Ctrl+/ - Logiciels - Linux et OS Alternatifs

Marsh Posté le 02-06-2009 à 22:00:13    

bonjour, je voudrai créer un raccourcis pour commenter, dé-commenter du code
en fouillant sur le net j'ai trouvé ceci

Code :
  1. ;; comment-or-uncomment-region-or-line
  2. ; it's almost the same as in textmate.el but I wrote it before I know about
  3. ; textmate.el, in fact that's how I found textmate.el, by googling this
  4. ; function to see if somebody already did that in a better way than me.
  5. (defun comment-or-uncomment-region-or-line ()
  6.   "Like comment-or-uncomment-region, but if there's no mark \(that means no
  7. region\) apply comment-or-uncomment to the current line"
  8.   (interactive)
  9.   (if (not mark-active)
  10.       (comment-or-uncomment-region
  11.         (line-beginning-position) (line-end-position))
  12.       (if (< (point) (mark))
  13.           (comment-or-uncomment-region (point) (mark))
  14.         (comment-or-uncomment-region (mark) (point)))))
  15. (global-set-key (kbd "C-/" ) 'comment-or-uncomment-region-or-line)


qui correspond exactement à ce que je cherche
si je lance la nouvelle commande comment-or-uncomment-region-or-line elle fonctionne
en revanche le raccourcis clavier...
 
j'ai essayé différente orthographe mais sans succès
merci de votre aide


Message édité par dams78 le 03-06-2009 à 14:26:58

---------------
dam's (debianer), ma galerie Flickr
Reply

Marsh Posté le 02-06-2009 à 22:00:13   

Reply

Marsh Posté le 03-06-2009 à 21:08:27    

pas d'idées?


---------------
dam's (debianer), ma galerie Flickr
Reply

Marsh Posté le 04-06-2009 à 21:11:49    

apparemment C-/ et C-_ ont la même interprétation sous emacs,
j'ai donc assigné la fonction au raccourcis C-_ et cela fonctionne du coup avec le raccourcis C-/


---------------
dam's (debianer), ma galerie Flickr
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed