tharpa/auto-complete-clang-objc

Rename variables and functions

Closed this issue · 2 comments

Variables and functions in auto-complete-clang-objc.el are the same name in original auto-complete-clang.el.

If requried both auto-complete-clang-objc.el and auto-complete-clang.el, the latter overwrite the former required package.

I propose renaming variables and functions in auto-complete-clang-objc.el (for example, from ac-clang-xxx to ac-clang-objc-xxx).

-> Yasuyuki Oka writes:

Hi Yasuyuki,

Variables and functions in auto-complete-clang-objc.el are the same
name in original auto-complete-clang.el.

Yeah, I didn't care about doing that as I did a quick and dirty hack and
I'm not using C++.

If requried both auto-complete-clang-objc.el and
auto-complete-clang.el, the latter overwrite the former required
package.

I propose renaming variables and functions in
auto-complete-clang-objc.el (for example, from ac-clang-xxx to
ac-clang-obj-xxx).

Yes, why not go ahead and do it. I am currently busy with other
projects so I cannot spend time on this hack, sorry.

Reply to this email directly or view it on GitHub.*

cheers

-dude

Thank to @tharpa for reply.

I cannot spend time on this hack, sorry.

I got it.

Though I was going to spend time working on this issue, I notice that
If there are many compilations, emacs-clang-complete-async.el (and
original emacs-clang-complete.el) is slow or Emacs hangs in the worst
case scenario. At the time I found
https://github.com/Golevka/emacs-clang-complete-async .

emacs-clang-complete-async fix above problem by client/server
approach, so I will use it.

Thanks

-- Yasuyki