News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

How to change key shortcuts in C::B?

Started by dempl_dempl, September 21, 2007, 03:45:35 PM

Previous topic - Next topic

dempl_dempl

Hi,
How to change key short-cuts in C::B?

If that cannot be done, does anyone know the key for stopping Debuging?



dje

Hi !

Go to Settings->Editor...
Then click on Keyboard shortcuts in the left columns.

Dje

dempl_dempl

#2
 :D I can't be that stupid. I know C++ , that requires some sort of intelligence :) .
There is nothing like that on the left side, and ofcourse I've tried that. 8)

Version Info:

Aug 27 2007, wx2.8.4 unicode, Ubuntu Linux Feisty 7.04

thomas

That functionality is provided by a contrib plugin that you apparently don't have (if you don't see the option).
Look for KeyBinder.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

dempl_dempl

Thanks, I knew you folks didn't left out KeyBinding from program :D ...

dempl_dempl

#5
I've found KeyBinder source on the Net.
I've compiled it nicely, but there is a catch:

I've got .so library as a result, but Code::Blocks asks for .cbplugin file.
What should I do?

JGM

Quote from: dempl_dempl on September 22, 2007, 12:56:10 AM
I've found KeyBinder source on the Net.
I've compiled it nicely, but there is a catch:

I've got .so library as a result, but Code::Blocks asks for .cbplugin file.
What should I do?

You can copy that file into:
home/yourusername/.codeblocks/share/codeblocks/plugins

and the correct manifest.xml zipped with the name of the plugin to:
home/yourusername/.codeblocks/share/codeblocks

And next time codeblocks will try to load the plugin, if not check the pluguin menu->manage and enable it.

raph

You may as well install the contributed plugins (there are some pretty cool ones) as following

  • if you compiled cb from source you have to configure it with
    Quote./configure --with-contrib-plugins=all

  • if you installed it from a debian package, you will get them by installing codeblocks-contrib_1.0svn****_i386.deb

  • if you installed it from a repository (so. has posted one into the forum recently), execute "apt-get install codeblocks-contrib"

Regards raph

dempl_dempl