G
G
Grigory Khrimyan2017-11-16 09:31:50
Vue.js
Grigory Khrimyan, 2017-11-16 09:31:50

How to deselect in Sublime Text 3?

Hello!
Very annoying one moment in Sublime. Highlighted a piece of code. I want to deselect. I poke the mouse in the middle of the selected text. Nothing happens. I click on the edge. Nothing. It is necessary to find the text (unselected) and only by clicking on it the selection is removed. Or arrows.
How can this behavior be corrected? Or could it be something wrong in the settings?
Checked in notepad ++, there the selection is perfectly removed when you click on any place.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
M
Michael, 2019-08-25
@vessels

new Vue({
  components: {
    navbar: ...
  }
})

X
xcuube, 2019-08-25
@xcuube

This is how it works for me

import Vue from "vue";
import App from "./App.vue";
import router from './router';
import Navbar from './components/Navbar.vue';

Vue.use(router);
Vue.component('navbar', Navbar);

Vue.config.productionTip = true;

new Vue({
  router,
  render: h => h(App)
}).$mount("#app");

A
Alexander Taratin, 2017-11-16
@Gryphonn

Wheel click.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question