Skip to main content
add stylesheet method
Source Link
Mr.Wizard
  • 275.2k
  • 34
  • 606
  • 1.5k

This is called the "Cell insertion menu". Its appearance is defined in MiscExpressions.tr via the front end resource "CellInsertionMenu".

Notebooks (depending on the stylesheet, of course) have it defined as a "cell insertion point cell" by default:

AbsoluteOptions[SelectedNotebook[], "CellInsertionPointCell"] (* -> {CellInsertionPointCell -> FEPrivate`FrontEndResource["FEExpressions", "CellInsertionMenu"]} *) 

We can disable it as follows:

SetOptions[SelectedNotebook[], "CellInsertionPointCell" -> Cell[]] (* gone *) 

I guess you can also removeTo kill this option frompop-up at the stylesheet.Stylesheet level one may use Edit Stylesheet and insert:

Cell[StyleData[All, "Working"], CellInsertionPointCell -> None ] 

This is called the "Cell insertion menu". Its appearance is defined in MiscExpressions.tr via the front end resource "CellInsertionMenu".

Notebooks (depending on the stylesheet, of course) have it defined as a "cell insertion point cell" by default:

AbsoluteOptions[SelectedNotebook[], "CellInsertionPointCell"] (* -> {CellInsertionPointCell -> FEPrivate`FrontEndResource["FEExpressions", "CellInsertionMenu"]} *) 

We can disable it as follows:

SetOptions[SelectedNotebook[], "CellInsertionPointCell" -> Cell[]] (* gone *) 

I guess you can also remove this option from the stylesheet.

This is called the "Cell insertion menu". Its appearance is defined in MiscExpressions.tr via the front end resource "CellInsertionMenu".

Notebooks (depending on the stylesheet, of course) have it defined as a "cell insertion point cell" by default:

AbsoluteOptions[SelectedNotebook[], "CellInsertionPointCell"] (* -> {CellInsertionPointCell -> FEPrivate`FrontEndResource["FEExpressions", "CellInsertionMenu"]} *) 

We can disable it as follows:

SetOptions[SelectedNotebook[], "CellInsertionPointCell" -> Cell[]] (* gone *) 

To kill this pop-up at the Stylesheet level one may use Edit Stylesheet and insert:

Cell[StyleData[All, "Working"], CellInsertionPointCell -> None ] 
Source Link
Oleksandr R.
  • 23.2k
  • 4
  • 88
  • 129

This is called the "Cell insertion menu". Its appearance is defined in MiscExpressions.tr via the front end resource "CellInsertionMenu".

Notebooks (depending on the stylesheet, of course) have it defined as a "cell insertion point cell" by default:

AbsoluteOptions[SelectedNotebook[], "CellInsertionPointCell"] (* -> {CellInsertionPointCell -> FEPrivate`FrontEndResource["FEExpressions", "CellInsertionMenu"]} *) 

We can disable it as follows:

SetOptions[SelectedNotebook[], "CellInsertionPointCell" -> Cell[]] (* gone *) 

I guess you can also remove this option from the stylesheet.