On Tue, Mar 1, 2011 at 18:36, Rémi Vanicat <[email protected]> wrote:
> Andrew Vargo <[email protected]> writes:
>
> [...]
>
>> I couldn't sort out restricting the keys a user could use and thought
>> "Ah! Magit does it! I'll see how it works".  3 minutes later, I was
>> looking at the source of rebase-model.el.  I don't know how I never
>> saw it, and it does not appear to be in the docs.
>
> [...]
>
> I didn't even now it exist, and I'm one of the developer that can push
> to magit main repos....
>
> If you want to contribute to magit, would you care to wrote some
> documentation so we can publicize this a little more? Thanks.

FWIW this is how I use it:

(add-hook
 'magit-mode-hook
 (lambda ()
   (require 'magit-svn)
   (require 'rebase-mode)))

(eval-after-load 'rebase-mode
  '(progn
     (define-key rebase-mode-map (kbd "E") 'toggle-read-only)))

I.e. I load it when magit loads, and "E" disables read-only so I can
copy/paste lines.

Reply via email to