有没有一种方法可以突出显示vim中python文件中的变量,函数参数和函数调用。我已经为python尝试了多个语法文件,但是我猜没有一个对我有用。
我猜要突出显示变量,而函数参数可以使代码对我而言更具可读性和清晰度。那么有没有办法实现呢?我查看了许多相关问题,其中大多数都集中在仅突出显示@EnableResourceServer
@Configuration
public class ResourceServerConfig extends WebSecurityConfigurerAdapter {
// Option 1) rename the parent somewhere else, like so....
private final AuthenticationManager parentAuthenticationManager;
@Autowired
public ResourceServerConfig(AuthenticationManager parentAuthenticationManager) {
this.parentAuthenticationManager = parentAuthenticationManager;
}
@Override
// Option 2) rename the child AuthenticationManager here
@Bean("childAuthenticationManager")
public AuthenticationManager authenticationManagerBean() throws Exception {
return super.authenticationManagerBean();
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.requestMatchers()
.antMatchers( "/login","/oauth/authorize")
.and()
.authorizeRequests()
.anyRequest()
.authenticated()
.and()
.formLogin()
.permitAll();
}
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.parentAuthenticationManager(authenticationManager)
.inMemoryAuthentication()
.withUser("Admin")
.password("admin")
.roles("ADMIN");
}
}
上,在这种情况下我并不是真正问过这个问题。
我正在使用Neovim 03.2,还尝试在Vim 7.4中使用。