We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Either of the follow config setting in my .emacs silently disable smart-tab. That is when I press
<tab>
it behaves like regular indentation
(defun my-company-hook () (company-mode t) (local-set-key [(control return)] 'company-complete) ) (add-hook 'c-mode-common-hook 'my-company-hook)
(add-hook 'c++-mode-hook (lambda () (cppcm-reload-all))) ;; OPTIONAL, avoid typing full path when starting gdb (global-set-key (kbd "C-c C-g") '(lambda ()(interactive) (gud-gdb (concat "gdb --fullname " (cppcm-get-exe-path-current-buffer)))) ) (setq cppcm-build-dirname build_base)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Either of the follow config setting in my .emacs silently disable smart-tab. That is when I press
it behaves like regular indentation
The text was updated successfully, but these errors were encountered: