smarttabs icon indicating copy to clipboard operation
smarttabs copied to clipboard

Emacs smart tabs - indent with tabs, align with spaces!

Results 19 smarttabs issues
Sort by recently updated
recently updated
newest added

I have a problem with SmartTabs checking tab-width size matches every language's offset in order to work `((and smart-tabs-mode indent-tabs-mode (eq ,offset tab-width))` The biggest advantage of using smart tabs...

Compatibility

Hi, I can't get this package to work in the simplest case imaginable. Here is a self-contained script which reproduces the problem: ```el (load "~/.emacs.d/straight/repos/smarttabs/smart-tabs-mode.el") (smart-tabs-insinuate 'c) (defun my-c-mode-common-hook ()...

smarttabs will disable the c-backslashes to align using `TAB` or `indent-region`, Say I got a snippet: ``` #define HASH_EMIT_KEY(hh,head,keyptr,fieldlen) \ do { \ unsigned _klen = fieldlen; \ write(HASH_EMIT_KEYS, &_klen,...

Bug
Language

I have this (I'm a retard who doesn't know if he's using it right): `(use-package smart-tabs-mode :ensure t :config (smart-tabs-insinuate 'python)` When loading my init.el I get this warning: `In...

When using a fixed indent level for multi-line function arguments, tabs are not converted into spaces. eg: When using this setting with tab-width set to 4: ``` (c-set-offset 'arglist-intro '++)...

Bug

I have tried to add the following to the `smart-tabs-insinuate-alist` to get verilog support but it doesn't seem to work. ``` (verilog lambda nil (add-hook 'verilog-mode-hook (lambda nil (smart-tabs-mode-enable) (smart-tabs-advice...

Language

Would automatically setting `tab-width` to the value of `c-basic-offset` in C/C++ buffers be a good idea? For example, if `tab-width` is 8 and `c-default-style` for C/C++ is a style that...

using c-echo-syntactic-information-p to check emacs' computed indentation shows this for C++ code in combination with smart-tabs: > class Foo > { > public: > int bar; the topmost-intro and class-open...

Bug
Language

It appears that the Ruby indentation configuration is broken. C indentation _is_ conforming to the Smart Tabs concept, but the following (example) Ruby code gets indented incorrectly. I have tried...

Bug
Language